You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
Thank you very much for your answer to my previous question. I appreciate this article very much and am very interested in it. I have tried to run the code, but in the process of running it, I encountered a problem. torch.load(op.join(args.eval_model_dir, 'training_args.bin'))shows no file between 530-540 of the train.py code, and I didn't find it in the folder. This problem has puzzled me for a long time, and I haven't found a solution. Hope to get your help, thank you very much!
def restore_training_settings(args):
assert not args.do_train and (args.do_test or args.do_eval)
train_args = torch.load(op.join(args.eval_model_dir, 'training_args.bin'))
The text was updated successfully, but these errors were encountered:
Dear @jingzhang697 , thank for your interest in our work.
This problem is most likely due to a wrong download of the checkpoint folder or a wrong configuration of the path pointed by args.eval_model_dir.
Make sure that you correctly downloaded the folder using the command explained in the README:
Hello,
Thank you very much for your answer to my previous question. I appreciate this article very much and am very interested in it. I have tried to run the code, but in the process of running it, I encountered a problem. torch.load(op.join(args.eval_model_dir, 'training_args.bin'))shows no file between 530-540 of the train.py code, and I didn't find it in the folder. This problem has puzzled me for a long time, and I haven't found a solution. Hope to get your help, thank you very much!
def restore_training_settings(args):
assert not args.do_train and (args.do_test or args.do_eval)
train_args = torch.load(op.join(args.eval_model_dir, 'training_args.bin'))
The text was updated successfully, but these errors were encountered: