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
There is a bug in README.md about Command-line interface: export BERT_BASE_DIR=chinese_L-12_H-768_A-12
export BERT_BASE_DIR=chinese_L-12_H-768_A-12
Wrong:
pytorch_pretrained_bert convert_tf_checkpoint_to_pytorch \ --tf_checkpoint_path $BERT_BASE_DIR/bert_model.ckpt.index \ --bert_config_file $BERT_BASE_DIR/bert_config.json \ --pytorch_dump_path $BERT_BASE_DIR/pytorch_model.bin
Right:
pytorch_pretrained_bert convert_tf_checkpoint_to_pytorch \ $BERT_BASE_DIR/bert_model.ckpt.index \ $BERT_BASE_DIR/bert_config.json \ $BERT_BASE_DIR/pytorch_model.bin
The text was updated successfully, but these errors were encountered:
Thanks!
Sorry, something went wrong.
Add support for MT5 (Closes huggingface#39, huggingface#47)
4e96788
No branches or pull requests
There is a bug in README.md about Command-line interface:
export BERT_BASE_DIR=chinese_L-12_H-768_A-12
Wrong:
Right:
The text was updated successfully, but these errors were encountered: