pere commited on
Commit
97abff3
·
1 Parent(s): 8a4d9a8

Saving weights and logs of step 10000

Browse files
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": ".",
3
  "architectures": [
4
  "RobertaForMaskedLM"
5
  ],
 
1
  {
2
+ "_name_or_path": "./",
3
  "architectures": [
4
  "RobertaForMaskedLM"
5
  ],
events.out.tfevents.1642077230.t1v-n-ccbf3e94-w-0.1162950.3.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e33670c3598dbcaf5f4429b3aab3dfd11efa65bec659418c6cca4da7c81594a
3
+ size 1470136
flax_model.msgpack CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cacdb8e4c2e09bba546c578d574490e5e2e80b8dbc8a29c2a35cb746bfc1b9d6
3
  size 498796983
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b0d23f5359aeb972fe292ae9e2d3485e2071e94d15b5be5ea1ac71c3ead79ed
3
  size 498796983
run_step4.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_4_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="5e-5" \
15
+ --end_learning_rate="0" \
16
+ --warmup_steps="0" \
17
+ --overwrite_output_dir \
18
+ --num_train_epochs="4" \
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