1export BERT_BASE_DIR=/path/to/bert/uncased_L-12_H-768_A-12
2
3transformers-cli convert --model_type bert \
4 --tf_checkpoint $BERT_BASE_DIR/bert_model.ckpt \
5 --config $BERT_BASE_DIR/bert_config.json \
6 --pytorch_dump_output $BERT_BASE_DIR/pytorch_model.bin
7