File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -448,13 +448,14 @@ def main():
448
448
449
449
# Load a trained model and vocabulary that you have fine-tuned
450
450
model = model_class .from_pretrained (args .output_dir )
451
- tokenizer = tokenizer_class .from_pretrained (args .output_dir )
451
+ tokenizer = tokenizer_class .from_pretrained (args .output_dir , do_lower_case = args . do_lower_case )
452
452
model .to (args .device )
453
453
454
454
455
455
# Evaluation
456
456
results = {}
457
457
if args .do_eval and args .local_rank in [- 1 , 0 ]:
458
+ tokenizer = tokenizer_class .from_pretrained (args .output_dir , do_lower_case = args .do_lower_case )
458
459
checkpoints = [args .output_dir ]
459
460
if args .eval_all_checkpoints :
460
461
checkpoints = list (os .path .dirname (c ) for c in sorted (glob .glob (args .output_dir + '/**/' + WEIGHTS_NAME , recursive = True )))
@@ -463,7 +464,6 @@ def main():
463
464
for checkpoint in checkpoints :
464
465
global_step = checkpoint .split ('-' )[- 1 ] if len (checkpoints ) > 1 else ""
465
466
model = model_class .from_pretrained (checkpoint )
466
- tokenizer = tokenizer_class .from_pretrained (checkpoint )
467
467
model .to (args .device )
468
468
result = evaluate (args , model , tokenizer , prefix = global_step )
469
469
result = dict ((k + '_{}' .format (global_step ), v ) for k , v in result .items ())
You can’t perform that action at this time.
0 commit comments