File size: 707 Bytes
677d035
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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" \
    --weight_decay="0.01" \
    --preprocessing_num_workers="64" \
    --per_device_train_batch_size="128" \
    --per_device_eval_batch_size="128" \
    --learning_rate="2e-4" \
    --warmup_steps="1000" \
    --overwrite_output_dir \
    --num_train_epochs="10" \
    --logging_steps="500" \
    --save_steps="10000" \
    --eval_steps="10000" \
    --dtype="bfloat16" \
    --push_to_hub