pere commited on
Commit
bfc4a75
1 Parent(s): eb5f879

Saving weights and logs of step 10000

Browse files
events.out.tfevents.1641652701.t1v-n-ccbf3e94-w-0.758060.3.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26a36c7a2f4536b164580c1516c21cdac735756710877e0288c87542b164c7ef
3
+ size 1470136
flax_model.msgpack CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:913188ed6c49a926dcb19e8579c89c51e2ee791ba74ea64c5b044b2414d1c30f
3
  size 498796983
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2cd902501be2cee2d166624671c545d2626cf6948c9cba950a8f2c709e5a7e2
3
  size 498796983
run_step3.sh ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ./run_mlm_flax.py \
2
+ --output_dir="./" \
3
+ --model_type="roberta" \
4
+ --model_name_or_path="./" \
5
+ --config_name="./" \
6
+ --tokenizer_name="./" \
7
+ --train_file /mnt/disks/flaxdisk/corpus/train_3_4.json \
8
+ --validation_file /mnt/disks/flaxdisk/corpus/validation.json \
9
+ --cache_dir="/mnt/disks/flaxdisk/cache/" \
10
+ --max_seq_length="512" \
11
+ --weight_decay="0.01" \
12
+ --per_device_train_batch_size="40" \
13
+ --per_device_eval_batch_size="40" \
14
+ --learning_rate="1e-4" \
15
+ --end_learning_rate="5e-3" \
16
+ --warmup_steps="0" \
17
+ --overwrite_output_dir \
18
+ --num_train_epochs="2" \
19
+ --adam_beta1="0.9" \
20
+ --adam_beta2="0.98" \
21
+ --adam_epsilon="1e-6" \
22
+ --logging_steps="10000" \
23
+ --save_steps="10000" \
24
+ --eval_steps="10000" \
25
+ --preprocessing_num_workers="64" \
26
+ --auth_token="True" \
27
+ --dtype="bfloat16" \
28
+ --push_to_hub