Unverified Commit 09549aa1 authored by Stefan Schweter's avatar Stefan Schweter Committed by GitHub
Browse files

examples: minor fixes in flax example readme (#13502)

parent aacd2123
...@@ -92,7 +92,7 @@ tokenizer.train_from_iterator(batch_iterator(), vocab_size=50265, min_frequency= ...@@ -92,7 +92,7 @@ tokenizer.train_from_iterator(batch_iterator(), vocab_size=50265, min_frequency=
]) ])
# Save files to disk # Save files to disk
tokenizer.save("./") tokenizer.save("./tokenizer.json")
``` ```
### Create configuration ### Create configuration
...@@ -241,7 +241,7 @@ Finally, we can run the example script to pretrain the model: ...@@ -241,7 +241,7 @@ Finally, we can run the example script to pretrain the model:
```bash ```bash
./run_clm_flax.py \ ./run_clm_flax.py \
--output_dir="./l" \ --output_dir="./" \
--model_type="gpt2" \ --model_type="gpt2" \
--config_name="./" \ --config_name="./" \
--tokenizer_name="./" \ --tokenizer_name="./" \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment