qg_subjqa / generate_reference_files.py
asahi417's picture
update
346267c
raw
history blame
695 Bytes
import os
from datasets import load_dataset
os.makedirs('./reference_files', exist_ok=True)
for split in ['validation', 'test']:
for domain in ["default", "books", "electronics", "grocery", "movies", "restaurants", "tripadvisor"]:
dataset = load_dataset('asahi417/qg_subjqa', domain, split=split)
for data in ['question', 'answer', 'sentence', 'paragraph']:
with open('./reference_files/{}-{}.{}txt'.format(data, split, "" if domain == 'default' else f"{domain}."), 'w') as f:
# if data == 'paragraph':
# f.write('\n'.join(dataset['paragraph_id']))
# else:
f.write('\n'.join(dataset[data]))