In [0]: directory_path+"/pytorch-transformers/examples/lm_finetuning/finetuned_lm")
Out[0]: ['config.json',
'pytorch_model.bin',
'tokenizer_config.json',
'special_tokens_map.json',
'added_tokens.json',
'vocab.txt']
This is the expected output according to your code. We think there is something missing in that line (and probably missing more code), so we tried using the command:
os.listdir(directory_path+"/pytorch-transformers/examples/lm_finetuning/finetuned_lm")
since the files are being listed. But our output folder contains only 'pytorch_model.bin'.
How can I save the remaining required files to this location?
Please help us.
In [0]: directory_path+"/pytorch-transformers/examples/lm_finetuning/finetuned_lm")
Out[0]: ['config.json',
'pytorch_model.bin',
'tokenizer_config.json',
'special_tokens_map.json',
'added_tokens.json',
'vocab.txt']
This is the expected output according to your code. We think there is something missing in that line (and probably missing more code), so we tried using the command:
since the files are being listed. But our output folder contains only 'pytorch_model.bin'.
How can I save the remaining required files to this location?
Please help us.