We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
examples/distillation: @VictorSanh examples/seq2seq: @sshleifer
Model I am using (Bert, XLNet ...):
The problem arises when using:
The tasks I am working on is:
Steps to reproduce the behavior:
finetune.py: error: unrecognized arguments
This is bad because Google Drive mounts at /content/drive/My Drive/ in Colab and thus the example scripts won't work if saving or reading from Drive.
/content/drive/My Drive/
I've created a Colab Notebook with repro.
The fix I've found is to change:
python finetune.py \ --learning_rate=3e-5 \ --fp16 \ --gpus 1 \ --do_train \ --do_predict \ --n_val 1000 \ --val_check_interval 0.1 \ $@
to
python finetune.py \ --learning_rate=3e-5 \ --fp16 \ --gpus 1 \ --do_train \ --do_predict \ --n_val 1000 \ --val_check_interval 0.1 \ "$@"
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Who can help
examples/distillation: @VictorSanh
examples/seq2seq: @sshleifer
Information
Model I am using (Bert, XLNet ...):
The problem arises when using:
The tasks I am working on is:
To reproduce
Steps to reproduce the behavior:
finetune.py: error: unrecognized arguments
This is bad because Google Drive mounts at
/content/drive/My Drive/
in Colab and thus the example scripts won't work if saving or reading from Drive.I've created a Colab Notebook with repro.
The fix I've found is to change:
to
The text was updated successfully, but these errors were encountered: