-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqa_relevant_only.py
More file actions
290 lines (247 loc) · 9.07 KB
/
Copy pathqa_relevant_only.py
File metadata and controls
290 lines (247 loc) · 9.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
import os
import re
import json
import argparse
from pathlib import Path
from tqdm import tqdm
import random
import numpy as np
from tokenizer import select_tokenizer
parser = argparse.ArgumentParser()
# Basic Configurations
parser.add_argument(
"--save_dir", type=Path, required=True, help="dataset folder to save dataset"
)
parser.add_argument(
"--save_name", type=str, required=True, help="name of the save dataset jsonl file"
)
parser.add_argument(
"--subset", type=str, default="relevant", help="Options: validation or test"
)
parser.add_argument(
"--tokenizer_path", type=str, required=True, help="path to the tokenizer model"
)
parser.add_argument(
"--tokenizer_type", type=str, default="nemo", help="[Options] hf, openai."
)
parser.add_argument(
"--max_seq_length",
type=int,
required=True,
help="max sequence length including all input tokens and generated tokens.",
)
parser.add_argument(
"--tokens_to_generate",
type=int,
required=True,
help="expected generated token amount.",
)
parser.add_argument(
"--num_samples", type=int, required=True, help="number of samples to generate"
)
parser.add_argument(
"--pre_samples", type=int, default=0, help="number of samples are already generated"
)
parser.add_argument("--random_seed", type=int, default=42)
parser.add_argument("--template", type=str, required=True, help="prompt template")
parser.add_argument(
"--remove_newline_tab",
action="store_true",
help="remove `\n` and `\t` in all strings.",
)
# Complexity Configurations
parser.add_argument("--dataset", type=str, required=True, help="dataset file")
args = parser.parse_args()
random.seed(args.random_seed)
np.random.seed(args.random_seed)
TOKENIZER = select_tokenizer(args.tokenizer_type, args.tokenizer_path)
# Read SQuAD QA dataset
def read_squad(file):
with open(file) as f:
data = json.load(f)
total_docs = [p["context"] for d in data["data"] for p in d["paragraphs"]]
total_docs = sorted(list(set(total_docs)))
total_docs_dict = {c: idx for idx, c in enumerate(total_docs)}
total_qas = []
for d in data["data"]:
more_docs = [total_docs_dict[p["context"]] for p in d["paragraphs"]]
for p in d["paragraphs"]:
for qas in p["qas"]:
if not qas["is_impossible"]:
total_qas.append(
{
"query": qas["question"],
"outputs": [a["text"] for a in qas["answers"]],
"context": [total_docs_dict[p["context"]]],
"more_context": [
idx
for idx in more_docs
if idx != total_docs_dict[p["context"]]
],
}
)
return total_qas, total_docs
# Read Hotpot QA dataset
def read_hotpotqa(file):
with open(file) as f:
data = json.load(f)
total_docs = [f"{t}\n{''.join(p)}" for d in data for t, p in d["context"]]
total_docs = sorted(list(set(total_docs)))
total_docs_dict = {c: idx for idx, c in enumerate(total_docs)}
print("Total number of unique docs:", len(total_docs))
total_qas = []
for d in data:
context = [total_docs_dict[f"{t}\n{''.join(p)}"] for t, p in d["context"]]
per_qa_total_docs = [f"{t}\n{''.join(p)}" for t, p in d["context"]]
supporting_facts = [
total_docs_dict[c]
for c in per_qa_total_docs
for s in d["supporting_facts"]
if s[0] in c
]
total_qas.append(
{
"query": d["question"],
"outputs": [d["answer"]],
"context": context,
"supporting_facts": supporting_facts,
}
)
assert len(supporting_facts) > 0, "No supporting facts found."
return total_qas, total_docs
def read_musqiue(file):
with open(file) as f:
# read jsonl file
data = [json.loads(line) for line in f]
total_docs = []
for d in data:
for p in d["paragraphs"]:
total_docs.append(f"{p['title']}\n{p['paragraph_text']}")
print("Total number of unique docs:", len(total_docs))
total_docs = sorted(list(set(total_docs)))
total_docs_dict = {c: idx for idx, c in enumerate(total_docs)}
total_qas = []
for d in data:
# This only deals with questions that are answerable given the context
if d["answerable"]:
per_qa_total_docs = {
p["idx"]: f"{p['title']}\n{p['paragraph_text']}"
for p in (d["paragraphs"])
}
total_qas.append(
{
"query": d["question"],
"outputs": [d["answer"]],
"context": [
total_docs_dict[f"{p['title']}\n{p['paragraph_text']}"]
for p in d["paragraphs"]
],
"supporting_facts": [
total_docs_dict[per_qa_total_docs[s["paragraph_support_idx"]]]
for s in d["question_decomposition"]
],
}
)
return total_qas, total_docs
def read_2wikimqa(file):
with open(file) as f:
data = json.load(f)
total_docs = [f"{t}\n{''.join(p)}" for d in data for t, p in d["context"]]
total_docs = sorted(list(set(total_docs)))
total_docs_dict = {c: idx for idx, c in enumerate(total_docs)}
print("Total number of unique docs:", len(total_docs))
total_qas = []
for d in data:
context = [total_docs_dict[f"{t}\n{''.join(p)}"] for t, p in d["context"]]
per_qa_total_docs = [f"{t}\n{''.join(p)}" for t, p in d["context"]]
supporting_facts = [
total_docs_dict[c]
for c in per_qa_total_docs
for s in d["supporting_facts"]
if s[0] in c
]
total_qas.append(
{
"query": d["question"],
"outputs": [d["answer"]],
"context": context,
"supporting_facts": supporting_facts,
}
)
assert len(supporting_facts) > 0, "No supporting facts found."
return total_qas, total_docs
DOCUMENT_PROMPT = "Passage {i}:\n{document}"
if "hotpot" in args.dataset:
QAS, DOCS = read_hotpotqa(args.dataset)
elif "musique" in args.dataset:
print("Reading MusiqueQA dataset")
QAS, DOCS = read_musqiue(args.dataset)
elif "2wikimqa" in args.dataset:
QAS, DOCS = read_2wikimqa(args.dataset)
else:
raise NotImplementedError(f"{args.dataset} is not implemented.")
def generate_input_output(
index,
):
curr_q = QAS[index]["query"]
curr_a = QAS[index]["outputs"]
curr_docs = QAS[index]["context"]
curr_more = QAS[index].get("more_context", [])
curr_supporting_facts = QAS[index].get("supporting_facts", [])
all_docs = curr_supporting_facts
random.Random(args.random_seed).shuffle(all_docs)
all_docs = [DOCS[d] for d in all_docs]
context = "\n\n".join(
[DOCUMENT_PROMPT.format(i=i + 1, document=d) for i, d in enumerate(all_docs)]
)
input_text = args.template.format(
context=context,
)
return input_text, curr_a, curr_q
def generate_samples(
num_samples: int, max_seq_length: int, save_dir: str, incremental: int = 10
):
write_jsons = []
tokens_to_generate = args.tokens_to_generate
# Find the perfect num_docs
num_docs = incremental
total_tokens = 0 # Track the total tokens generated for this example
input_text, answer, question = generate_input_output(0)
# Calculate the number of tokens in the example
total_tokens = len(TOKENIZER.text_to_tokens(input_text + f" {answer}"))
print(
f"Max length {max_seq_length} | Current length {total_tokens + tokens_to_generate} | Docs: {num_docs}"
)
print("Number of documents:", num_docs)
# Generate samples
for index in tqdm(range(num_samples)):
input_text, answer, question = generate_input_output(
index + args.pre_samples,
)
length = len(TOKENIZER.text_to_tokens(input_text)) + tokens_to_generate
if args.remove_newline_tab:
input_text = " ".join(
input_text.replace("\n", " ").replace("\t", " ").strip().split()
)
formatted_output = {
"index": index,
"input": question,
"context": input_text,
"answers": answer,
"length": length,
}
write_jsons.append(formatted_output)
return write_jsons
def main():
save_file = args.save_dir / f"{args.save_name}" / f"{args.subset}-{os.path.basename(args.tokenizer_path)}-{args.num_samples}.jsonl"
save_file.parent.mkdir(parents=True, exist_ok=True)
write_jsons = generate_samples(
num_samples=args.num_samples,
max_seq_length=args.max_seq_length,
save_dir=args.save_dir,
)
with open(save_file, "w") as f:
for item in write_jsons:
f.write(json.dumps(item) + "\n")
if __name__ == "__main__":
main()