forked from boostcampaitech2/mrc-level2-nlp-09
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils_qa.py
646 lines (573 loc) · 28.7 KB
/
utils_qa.py
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
# coding=utf-8
# Copyright 2020 The HuggingFace Team All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the 'License');
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an 'AS IS' BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Pre-processing
Post-processing utilities for question answering.
"""
import collections
import json
import logging
import os
from typing import Optional, Tuple, Any
import numpy as np
from tqdm.auto import tqdm
import torch
import random
from transformers import is_torch_available, PreTrainedTokenizerFast, TrainingArguments
from transformers.trainer_utils import get_last_checkpoint
from datasets import DatasetDict
from arguments import (
ModelArguments,
DataTrainingArguments,
)
logger = logging.getLogger(__name__)
def set_seed(seed: int = 42):
"""
seed 고정하는 함수 (random, numpy, torch)
Args:
seed (:obj:`int`): The seed to set.
"""
random.seed(seed)
np.random.seed(seed)
if is_torch_available():
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
torch.cuda.manual_seed_all(seed) # if use multi-GPU
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
def postprocess_qa_predictions(
examples,
features,
predictions: Tuple[np.ndarray, np.ndarray],
version_2_with_negative: bool = False,
n_best_size: int = 20,
max_answer_length: int = 30,
null_score_diff_threshold: float = 0.0,
output_dir: Optional[str] = None,
prefix: Optional[str] = None,
is_world_process_zero: bool = True,
):
"""
Post-processes : qa model의 prediction 값을 후처리하는 함수
모델은 start logit과 end logit을 반환하기 때문에, 이를 기반으로 original text로 변경하는 후처리가 필요함
Args:
examples: 전처리 되지 않은 데이터셋 (see the main script for more information).
features: 전처리가 진행된 데이터셋 (see the main script for more information).
predictions (:obj:`Tuple[np.ndarray, np.ndarray]`):
모델의 예측값 :start logits과 the end logits을 나타내는 two arrays 첫번째 차원은 :obj:`features`의 element와 갯수가 맞아야함.
version_2_with_negative (:obj:`bool`, `optional`, defaults to :obj:`False`):
정답이 없는 데이터셋이 포함되어있는지 여부를 나타냄
n_best_size (:obj:`int`, `optional`, defaults to 20):
답변을 찾을 때 생성할 n-best prediction 총 개수
max_answer_length (:obj:`int`, `optional`, defaults to 30):
생성할 수 있는 답변의 최대 길이
null_score_diff_threshold (:obj:`float`, `optional`, defaults to 0):
null 답변을 선택하는 데 사용되는 threshold
: if the best answer has a score that is less than the score of
the null answer minus this threshold, the null answer is selected for this example (note that the score of
the null answer for an example giving several features is the minimum of the scores for the null answer on
each feature: all features must be aligned on the fact they `want` to predict a null answer).
Only useful when :obj:`version_2_with_negative` is :obj:`True`.
output_dir (:obj:`str`, `optional`):
아래의 값이 저장되는 경로
dictionary : predictions, n_best predictions (with their scores and logits) if:obj:`version_2_with_negative=True`,
dictionary : the scores differences between best and null answers
prefix (:obj:`str`, `optional`):
dictionary에 `prefix`가 포함되어 저장됨
is_world_process_zero (:obj:`bool`, `optional`, defaults to :obj:`True`):
이 프로세스가 main process인지 여부(logging/save를 수행해야 하는지 여부를 결정하는 데 사용됨)
"""
assert (
len(predictions) == 2
), "`predictions` should be a tuple with two elements (start_logits, end_logits)."
all_start_logits, all_end_logits = predictions
assert len(predictions[0]) == len(
features
), f"Got {len(predictions[0])} predictions and {len(features)} features."
# example과 mapping되는 feature 생성
example_id_to_index = {k: i for i, k in enumerate(examples["id"])}
features_per_example = collections.defaultdict(list)
for i, feature in enumerate(features):
features_per_example[example_id_to_index[feature["example_id"]]].append(i)
# prediction, nbest에 해당하는 OrderedDict 생성합니다.
all_predictions = collections.OrderedDict()
all_nbest_json = collections.OrderedDict()
if version_2_with_negative:
scores_diff_json = collections.OrderedDict()
# Logging.
logger.setLevel(logging.INFO if is_world_process_zero else logging.WARN)
logger.info(
f"Post-processing {len(examples)} example predictions split into {len(features)} features."
)
# 전체 example들에 대한 main Loop
for example_index, example in enumerate(tqdm(examples)):
# 해당하는 현재 example index
feature_indices = features_per_example[example_index]
min_null_prediction = None
prelim_predictions = []
# 현재 example에 대한 모든 feature 생성합니다.
for feature_index in feature_indices:
# 각 featureure에 대한 모든 prediction을 가져옵니다.
start_logits = all_start_logits[feature_index]
end_logits = all_end_logits[feature_index]
# logit과 original context의 logit을 mapping합니다.
offset_mapping = features[feature_index]["offset_mapping"]
# Optional : `token_is_max_context`, 제공되는 경우 현재 기능에서 사용할 수 있는 max context가 없는 answer를 제거합니다
token_is_max_context = features[feature_index].get(
"token_is_max_context", None
)
# minimum null prediction을 업데이트 합니다.
feature_null_score = start_logits[0] + end_logits[0]
if (
min_null_prediction is None
or min_null_prediction["score"] > feature_null_score
):
min_null_prediction = {
"offsets": (0, 0),
"score": feature_null_score,
"start_logit": start_logits[0],
"end_logit": end_logits[0],
}
# `n_best_size`보다 큰 start and end logits을 살펴봅니다.
start_indexes = np.argsort(start_logits)[
-1 : -n_best_size - 1 : -1
].tolist()
end_indexes = np.argsort(end_logits)[-1 : -n_best_size - 1 : -1].tolist()
for start_index in start_indexes:
for end_index in end_indexes:
# out-of-scope answers는 고려하지 않습니다.
if (
start_index >= len(offset_mapping)
or end_index >= len(offset_mapping)
or offset_mapping[start_index] is None
or offset_mapping[end_index] is None
):
continue
# 길이가 < 0 또는 > max_answer_length인 answer도 고려하지 않습니다.
if (
end_index < start_index
or end_index - start_index + 1 > max_answer_length
):
continue
# 최대 context가 없는 answer도 고려하지 않습니다.
if (
token_is_max_context is not None
and not token_is_max_context.get(str(start_index), False)
):
continue
prelim_predictions.append(
{
"offsets": (
offset_mapping[start_index][0],
offset_mapping[end_index][1],
),
"score": start_logits[start_index] + end_logits[end_index],
"start_logit": start_logits[start_index],
"end_logit": end_logits[end_index],
}
)
if version_2_with_negative:
# minimum null prediction을 추가합니다.
prelim_predictions.append(min_null_prediction)
null_score = min_null_prediction["score"]
# 가장 좋은 `n_best_size` predictions만 유지합니다.
predictions = sorted(
prelim_predictions, key=lambda x: x["score"], reverse=True
)[:n_best_size]
# 낮은 점수로 인해 제거된 경우 minimum null prediction을 다시 추가합니다.
if version_2_with_negative and not any(
p["offsets"] == (0, 0) for p in predictions
):
predictions.append(min_null_prediction)
# offset을 사용하여 original context에서 answer text를 수집합니다.
context = example["context"]
for pred in predictions:
offsets = pred.pop("offsets")
pred["text"] = context[offsets[0] : offsets[1]]
# rare edge case에는 null이 아닌 예측이 하나도 없으며 failure를 피하기 위해 fake prediction을 만듭니다.
if len(predictions) == 0 or (
len(predictions) == 1 and predictions[0]["text"] == ""
):
predictions.insert(
0, {"text": "empty", "start_logit": 0.0, "end_logit": 0.0, "score": 0.0}
)
# 모든 점수의 소프트맥스를 계산합니다(we do it with numpy to stay independent from torch/tf in this file, using the LogSumExp trick).
scores = np.array([pred.pop("score") for pred in predictions])
exp_scores = np.exp(scores - np.max(scores))
probs = exp_scores / exp_scores.sum()
# 예측값에 확률을 포함합니다.
for prob, pred in zip(probs, predictions):
pred["probability"] = prob
# best prediction을 선택합니다.
if not version_2_with_negative:
all_predictions[example["id"]] = predictions[0]["text"]
else:
# else case : 먼저 비어 있지 않은 최상의 예측을 찾아야 합니다
i = 0
while predictions[i]["text"] == "":
i += 1
best_non_null_pred = predictions[i]
# threshold를 사용해서 null prediction을 비교합니다.
score_diff = (
null_score
- best_non_null_pred["start_logit"]
- best_non_null_pred["end_logit"]
)
scores_diff_json[example["id"]] = float(score_diff) # JSON-serializable 가능
if score_diff > null_score_diff_threshold:
all_predictions[example["id"]] = ""
else:
all_predictions[example["id"]] = best_non_null_pred["text"]
# np.float를 다시 float로 casting -> `predictions`은 JSON-serializable 가능
all_nbest_json[example["id"]] = [
{
k: (
float(v)
if isinstance(v, (np.float16, np.float32, np.float64))
else v
)
for k, v in pred.items()
}
for pred in predictions
]
# output_dir이 있으면 모든 dicts를 저장합니다.
if output_dir is not None:
assert os.path.isdir(output_dir), f"{output_dir} is not a directory."
prediction_file = os.path.join(
output_dir,
"predictions.json" if prefix is None else f"predictions_{prefix}".json,
)
nbest_file = os.path.join(
output_dir,
"nbest_predictions.json"
if prefix is None
else f"nbest_predictions_{prefix}".json,
)
if version_2_with_negative:
null_odds_file = os.path.join(
output_dir,
"null_odds.json" if prefix is None else f"null_odds_{prefix}".json,
)
logger.info(f"Saving predictions to {prediction_file}.")
with open(prediction_file, "w", encoding="utf-8") as writer:
writer.write(
json.dumps(all_predictions, indent=4, ensure_ascii=False) + "\n"
)
logger.info(f"Saving nbest_preds to {nbest_file}.")
with open(nbest_file, "w", encoding="utf-8") as writer:
writer.write(
json.dumps(all_nbest_json, indent=4, ensure_ascii=False) + "\n"
)
if version_2_with_negative:
logger.info(f"Saving null_odds to {null_odds_file}.")
with open(null_odds_file, "w", encoding="utf-8") as writer:
writer.write(
json.dumps(scores_diff_json, indent=4, ensure_ascii=False) + "\n"
)
return all_predictions
def check_no_error(
data_args: DataTrainingArguments,
training_args: TrainingArguments,
datasets: DatasetDict,
tokenizer,
) -> Tuple[Any, int]:
# last checkpoint 찾기.
last_checkpoint = None
if (
os.path.isdir(training_args.output_dir)
and training_args.do_train
and not training_args.overwrite_output_dir
):
last_checkpoint = get_last_checkpoint(training_args.output_dir)
if last_checkpoint is None and len(os.listdir(training_args.output_dir)) > 0:
raise ValueError(
f"Output directory ({training_args.output_dir}) already exists and is not empty. "
"Use --overwrite_output_dir to overcome."
)
elif last_checkpoint is not None:
logger.info(
f"Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change "
"the `--output_dir` or add `--overwrite_output_dir` to train from scratch."
)
# Tokenizer check: 해당 script는 Fast tokenizer를 필요로합니다.
if not isinstance(tokenizer, PreTrainedTokenizerFast):
raise ValueError(
"This example script only works for models that have a fast tokenizer. Checkout the big table of models "
"at https://huggingface.co/transformers/index.html#bigtable to find the model types that meet this "
"requirement"
)
if data_args.max_seq_length > tokenizer.model_max_length:
logger.warn(
f"The max_seq_length passed ({data_args.max_seq_length}) is larger than the maximum length for the"
f"model ({tokenizer.model_max_length}). Using max_seq_length={tokenizer.model_max_length}."
)
max_seq_length = min(data_args.max_seq_length, tokenizer.model_max_length)
if "validation" not in datasets:
raise ValueError("--do_eval requires a validation dataset")
return last_checkpoint, max_seq_length
def postprocess_qa_predictions_inf(
examples,
features,
predictions: Tuple[np.ndarray, np.ndarray],
topk, # 바꿈!
version_2_with_negative: bool = False,
n_best_size: int = 20,
max_answer_length: int = 30,
null_score_diff_threshold: float = 0.0,
output_dir: Optional[str] = None,
prefix: Optional[str] = None,
is_world_process_zero: bool = True,
):
"""
Post-processes : qa model의 prediction 값을 후처리하는 함수
모델은 start logit과 end logit을 반환하기 때문에, 이를 기반으로 original text로 변경하는 후처리가 필요함
Args:
examples: 전처리 되지 않은 데이터셋 (see the main script for more information).
features: 전처리가 진행된 데이터셋 (see the main script for more information).
predictions (:obj:`Tuple[np.ndarray, np.ndarray]`):
모델의 예측값 :start logits과 the end logits을 나타내는 two arrays 첫번째 차원은 :obj:`features`의 element와 갯수가 맞아야함.
version_2_with_negative (:obj:`bool`, `optional`, defaults to :obj:`False`):
정답이 없는 데이터셋이 포함되어있는지 여부를 나타냄
n_best_size (:obj:`int`, `optional`, defaults to 20):
답변을 찾을 때 생성할 n-best prediction 총 개수
max_answer_length (:obj:`int`, `optional`, defaults to 30):
생성할 수 있는 답변의 최대 길이
null_score_diff_threshold (:obj:`float`, `optional`, defaults to 0):
null 답변을 선택하는 데 사용되는 threshold
: if the best answer has a score that is less than the score of
the null answer minus this threshold, the null answer is selected for this example (note that the score of
the null answer for an example giving several features is the minimum of the scores for the null answer on
each feature: all features must be aligned on the fact they `want` to predict a null answer).
Only useful when :obj:`version_2_with_negative` is :obj:`True`.
output_dir (:obj:`str`, `optional`):
아래의 값이 저장되는 경로
dictionary : predictions, n_best predictions (with their scores and logits) if:obj:`version_2_with_negative=True`,
dictionary : the scores differences between best and null answers
prefix (:obj:`str`, `optional`):
dictionary에 `prefix`가 포함되어 저장됨
is_world_process_zero (:obj:`bool`, `optional`, defaults to :obj:`True`):
이 프로세스가 main process인지 여부(logging/save를 수행해야 하는지 여부를 결정하는 데 사용됨)
"""
assert (
len(predictions) == 2
), "`predictions` should be a tuple with two elements (start_logits, end_logits)."
all_start_logits, all_end_logits = predictions
assert len(predictions[0]) == len(
features
), f"Got {len(predictions[0])} predictions and {len(features)} features."
# example과 mapping되는 feature 생성
example_id_to_index = {k: i for i, k in enumerate(examples["id"])}
features_per_example = collections.defaultdict(list)
for i, feature in enumerate(features):
features_per_example[example_id_to_index[feature["example_id"]]].append(i)
# prediction, nbest에 해당하는 OrderedDict 생성합니다.
all_predictions = collections.OrderedDict()
all_nbest_json = collections.OrderedDict()
if version_2_with_negative:
scores_diff_json = collections.OrderedDict()
# Logging.
logger.setLevel(logging.INFO if is_world_process_zero else logging.WARN)
logger.info(
f"Post-processing {len(examples)} example predictions split into {len(features)} features."
)
# 전체 example들에 대한 main Loop
for example_index, example in enumerate(tqdm(examples)):
# 해당하는 현재 example index
feature_indices = features_per_example[example_index]
min_null_prediction = None
# 바꿈!
prelim_predictions = collections.defaultdict(list)
# 현재 example에 대한 모든 feature 생성합니다.
for feature_index in feature_indices:
# 각 featureure에 대한 모든 prediction을 가져옵니다.
start_logits = all_start_logits[feature_index]
end_logits = all_end_logits[feature_index]
# softmax로 변환하는 과정
start_logits = np.array(start_logits)
exp_start = np.exp(start_logits - np.max(start_logits))
start_logits = exp_start / exp_start.sum()
end_logits = np.array(end_logits)
exp_end = np.exp(end_logits - np.max(end_logits))
end_logits = exp_end / exp_end.sum()
# logit과 original context의 logit을 mapping합니다.
offset_mapping = features[feature_index]["offset_mapping"]
# 바꿈!
sample_mapping = (
features[feature_index]["overflow_to_sample_mapping"] % topk
)
# Optional : `token_is_max_context`, 제공되는 경우 현재 기능에서 사용할 수 있는 max context가 없는 answer를 제거합니다
token_is_max_context = features[feature_index].get(
"token_is_max_context", None
)
# minimum null prediction을 업데이트 합니다.
feature_null_score = start_logits[0] * end_logits[0]
if (
min_null_prediction is None
or min_null_prediction["score"] > feature_null_score
):
min_null_prediction = {
"offsets": (0, 0),
"score": feature_null_score,
"start_logit": start_logits[0],
"end_logit": end_logits[0],
}
# `n_best_size`보다 큰 start and end logits을 살펴봅니다.
start_indexes = np.argsort(start_logits)[
-1 : -n_best_size - 1 : -1
].tolist()
end_indexes = np.argsort(end_logits)[-1 : -n_best_size - 1 : -1].tolist()
for start_index in start_indexes:
for end_index in end_indexes:
# out-of-scope answers는 고려하지 않습니다.
if (
start_index >= len(offset_mapping)
or end_index >= len(offset_mapping)
or offset_mapping[start_index] is None
or offset_mapping[end_index] is None
):
continue
# 길이가 < 0 또는 > max_answer_length인 answer도 고려하지 않습니다.
if (
end_index < start_index
or end_index - start_index + 1 > max_answer_length
):
continue
# 최대 context가 없는 answer도 고려하지 않습니다.
if (
token_is_max_context is not None
and not token_is_max_context.get(str(start_index), False)
):
continue
# 바꿈!
prelim_predictions[sample_mapping].append(
{
"offsets": (
offset_mapping[start_index][0],
offset_mapping[end_index][1],
),
# "score": start_logits[start_index] + end_logits[end_index],
# 확률로 바꿨으니 이제 곱해야지!!
"score": start_logits[start_index] * end_logits[end_index],
"start_logit": start_logits[start_index],
"end_logit": end_logits[end_index],
}
)
if version_2_with_negative:
# minimum null prediction을 추가합니다.
prelim_predictions.append(min_null_prediction)
null_score = min_null_prediction["score"]
# 가장 좋은 `n_best_size` predictions만 유지합니다.
# offset을 사용하여 original context에서 answer text를 수집합니다.
# 바꿈!
for sample in prelim_predictions:
prelim_predictions[sample] = sorted(
prelim_predictions[sample], key=lambda x: x["score"], reverse=True
)[:n_best_size]
context = example["context"][sample]
for pred in prelim_predictions[sample]:
offsets = pred.pop("offsets")
pred["text"] = context[offsets[0] : offsets[1]]
predictions = []
for sample in prelim_predictions:
predictions.extend(prelim_predictions[sample])
predictions = sorted(predictions, key=lambda x: x["score"], reverse=True)[
:n_best_size
]
# 낮은 점수로 인해 제거된 경우 minimum null prediction을 다시 추가합니다.
if version_2_with_negative and not any(
p["offsets"] == (0, 0) for p in predictions
):
predictions.append(min_null_prediction)
# rare edge case에는 null이 아닌 예측이 하나도 없으며 failure를 피하기 위해 fake prediction을 만듭니다.
if len(predictions) == 0 or (
len(predictions) == 1 and predictions[0]["text"] == ""
):
predictions.insert(
0, {"text": "empty", "start_logit": 0.0, "end_logit": 0.0, "score": 0.0}
)
# 모든 점수의 소프트맥스를 계산합니다(we do it with numpy to stay independent from torch/tf in this file, using the LogSumExp trick).
scores = np.array([pred.pop("score") for pred in predictions])
exp_scores = np.exp(scores - np.max(scores))
probs = exp_scores / exp_scores.sum()
# 예측값에 확률을 포함합니다.
for prob, pred in zip(probs, predictions):
pred["probability"] = prob
# best prediction을 선택합니다.
if not version_2_with_negative:
all_predictions[example["id"]] = predictions[0]["text"]
else:
# else case : 먼저 비어 있지 않은 최상의 예측을 찾아야 합니다
i = 0
while predictions[i]["text"] == "":
i += 1
best_non_null_pred = predictions[i]
# threshold를 사용해서 null prediction을 비교합니다.
score_diff = (
null_score
- best_non_null_pred["start_logit"]
- best_non_null_pred["end_logit"]
)
scores_diff_json[example["id"]] = float(score_diff) # JSON-serializable 가능
if score_diff > null_score_diff_threshold:
all_predictions[example["id"]] = ""
else:
all_predictions[example["id"]] = best_non_null_pred["text"]
# np.float를 다시 float로 casting -> `predictions`은 JSON-serializable 가능
all_nbest_json[example["id"]] = [
{
k: (
float(v)
if isinstance(v, (np.float16, np.float32, np.float64))
else v
)
for k, v in pred.items()
}
for pred in predictions
]
# output_dir이 있으면 모든 dicts를 저장합니다.
if output_dir is not None:
assert os.path.isdir(output_dir), f"{output_dir} is not a directory."
prediction_file = os.path.join(
output_dir,
"predictions.json" if prefix is None else f"predictions_{prefix}".json,
)
nbest_file = os.path.join(
output_dir,
"nbest_predictions.json"
if prefix is None
else f"nbest_predictions_{prefix}".json,
)
if version_2_with_negative:
null_odds_file = os.path.join(
output_dir,
"null_odds.json" if prefix is None else f"null_odds_{prefix}".json,
)
logger.info(f"Saving predictions to {prediction_file}.")
with open(prediction_file, "w", encoding="utf-8") as writer:
writer.write(
json.dumps(all_predictions, indent=4, ensure_ascii=False) + "\n"
)
logger.info(f"Saving nbest_preds to {nbest_file}.")
with open(nbest_file, "w", encoding="utf-8") as writer:
writer.write(
json.dumps(all_nbest_json, indent=4, ensure_ascii=False) + "\n"
)
if version_2_with_negative:
logger.info(f"Saving null_odds to {null_odds_file}.")
with open(null_odds_file, "w", encoding="utf-8") as writer:
writer.write(
json.dumps(scores_diff_json, indent=4, ensure_ascii=False) + "\n"
)
return all_predictions