File size: 597 Bytes
677d035 a1dc349 677d035 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#!/usr/bin/env bash
python3 run_mlm_flax.py \
--model_name_or_path="flax_model.msgpack" \
--output_dir="./" \
--model_type="roberta" \
--config_name="./" \
--tokenizer_name="./" \
--dataset_name="oscar" \
--dataset_config_name="unshuffled_deduplicated_id" \
--max_seq_length="128" \
--preprocessing_num_workers="64" \
--per_device_train_batch_size="128" \
--per_device_eval_batch_size="128" \
--learning_rate="8e-5" \
--warmup_steps="1000" \
--overwrite_output_dir \
--num_train_epochs="10" \
--dtype="bfloat16" \
--push_to_hub
|