Saving weights and logs of step 10000
Browse files- config.json +1 -1
- events.out.tfevents.1642493280.t1v-n-ccbf3e94-w-0.1564171.3.v2 +3 -0
- flax_model.msgpack +1 -1
- run_step4_test.sh +27 -0
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.1642493280.t1v-n-ccbf3e94-w-0.1564171.3.v2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f71aa85077c8314164a335950ccd0c9ba7c4ba278849e468f05ef9a6a6723ff7
|
3 |
+
size 1470136
|
flax_model.msgpack
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 498796983
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7b83f6385d2817f5fd97da72a3ef402c8d9861e2a3bcce1faf6c980414acd689
|
3 |
size 498796983
|
run_step4_test.sh
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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="1e-4" \
|
15 |
+
--warmup_steps="10000" \
|
16 |
+
--overwrite_output_dir \
|
17 |
+
--num_train_epochs="1" \
|
18 |
+
--adam_beta1="0.9" \
|
19 |
+
--adam_beta2="0.98" \
|
20 |
+
--adam_epsilon="1e-6" \
|
21 |
+
--logging_steps="10000" \
|
22 |
+
--save_steps="10000" \
|
23 |
+
--eval_steps="10000" \
|
24 |
+
--preprocessing_num_workers="64" \
|
25 |
+
--auth_token="True" \
|
26 |
+
--dtype="bfloat16" \
|
27 |
+
--push_to_hub
|