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
Hi,
I am getting the following error when fine tuning BERT:
tensorflow.python.framework.errors_impl.NotFoundError: NewRandomAccessFile failed to Create/Open: =./$MY_PATH$/bert_config.json : The system cannot find the path specified. ; No such process
I was using TF 2.11, but after reading some users experimented the same problem, I changed it to TF 1.15.0. It is running under Python 3.7.5 and I am also using CUDA 11.0
Hi,
I am getting the following error when fine tuning BERT:
tensorflow.python.framework.errors_impl.NotFoundError: NewRandomAccessFile failed to Create/Open: =./$MY_PATH$/bert_config.json : The system cannot find the path specified. ; No such process
I was using TF 2.11, but after reading some users experimented the same problem, I changed it to TF 1.15.0. It is running under Python 3.7.5 and I am also using CUDA 11.0
The code I am using is the following:
python ./BERT_master/run_classifier.py --task_name = cola --do_train = true --do_eval = true --data_dir =./IMDB_dataset --vocab_file =./BERT_model/vocab.txt --bert_config_file =./BERT_model/bert_config.json --init_checkpoint =./BERT_model/bert_model.ckpt.index --max_seq_length=128 --train_batch_size=32 --learning_rate=2e-5 --num_train_epochs=3.0 --output_dir =./MODEL_output --do_lower_case = True
I was able to run this code before in another computer without GPU.
Any hint on what I should do for it to run?
Thanks
The text was updated successfully, but these errors were encountered: