Skip to content

Commit

Permalink
Update README.md (mlcommons#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkanwar23 authored Feb 6, 2020
1 parent fd17c70 commit f34936f
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion language_model/tensorflow/bert/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
README
To run this model, use the following command.

```shell

python run_pretraining.py \
--bert_config_file=./bert_config.json \
--output_dir=/tmp/output/ \
--input_file="./uncased_seq_512/wikipedia.tfrecord*,./uncased_seq_512/books.tfrecord*" \
--nodo_eval \
--do_train \
--eval_batch_size=8 \
--init_checkpoint=./checkpoint/model.ckpt-7037 \
--iterations_per_loop=1000 \
--max_predictions_per_seq=76 \
--max_seq_length=512 \
--num_train_steps=1365333333 \
--num_warmup_steps=0 \
--optimizer=lamb \
--save_checkpoints_steps=1000 \
--start_warmup_step=0 \
--train_batch_size=24/

0 comments on commit f34936f

Please sign in to comment.