Training in progress, epoch 1
Browse files- .gitattributes +1 -0
- .gitignore +1 -0
- config.json +29 -0
- pytorch_model.bin +3 -0
- runs/Apr18_19-22-27_03f1a0e3760b/1681845779.3839226/events.out.tfevents.1681845779.03f1a0e3760b.341.1 +3 -0
- runs/Apr18_19-22-27_03f1a0e3760b/events.out.tfevents.1681845779.03f1a0e3760b.341.0 +3 -0
- runs/Apr18_19-35-37_03f1a0e3760b/1681846547.8366241/events.out.tfevents.1681846547.03f1a0e3760b.341.3 +3 -0
- runs/Apr18_19-35-37_03f1a0e3760b/events.out.tfevents.1681846547.03f1a0e3760b.341.2 +3 -0
- runs/Apr18_20-03-52_03f1a0e3760b/1681848249.8165042/events.out.tfevents.1681848249.03f1a0e3760b.341.7 +3 -0
- runs/Apr18_20-03-52_03f1a0e3760b/events.out.tfevents.1681848249.03f1a0e3760b.341.6 +3 -0
- runs/Apr18_20-09-45_03f1a0e3760b/1681848592.6540282/events.out.tfevents.1681848592.03f1a0e3760b.341.9 +3 -0
- runs/Apr18_20-09-45_03f1a0e3760b/events.out.tfevents.1681848592.03f1a0e3760b.341.8 +3 -0
- runs/Apr18_20-10-20_03f1a0e3760b/1681848628.0434437/events.out.tfevents.1681848628.03f1a0e3760b.341.11 +3 -0
- runs/Apr18_20-10-20_03f1a0e3760b/events.out.tfevents.1681848628.03f1a0e3760b.341.10 +3 -0
- runs/Apr18_20-29-31_03f1a0e3760b/1681849777.2321415/events.out.tfevents.1681849777.03f1a0e3760b.341.13 +3 -0
- runs/Apr18_20-29-31_03f1a0e3760b/events.out.tfevents.1681849777.03f1a0e3760b.341.12 +3 -0
- runs/Apr18_20-43-01_03f1a0e3760b/1681850588.9942942/events.out.tfevents.1681850588.03f1a0e3760b.341.15 +3 -0
- runs/Apr18_20-43-01_03f1a0e3760b/events.out.tfevents.1681850588.03f1a0e3760b.341.14 +3 -0
- runs/Apr18_20-44-35_03f1a0e3760b/1681850682.9172428/events.out.tfevents.1681850682.03f1a0e3760b.341.17 +3 -0
- runs/Apr18_20-44-35_03f1a0e3760b/events.out.tfevents.1681850682.03f1a0e3760b.341.16 +3 -0
- runs/Apr18_20-51-22_03f1a0e3760b/1681851088.625657/events.out.tfevents.1681851088.03f1a0e3760b.341.19 +3 -0
- runs/Apr18_20-51-22_03f1a0e3760b/events.out.tfevents.1681851088.03f1a0e3760b.341.18 +3 -0
- runs/Apr18_21-29-05_03f1a0e3760b/1681853353.563434/events.out.tfevents.1681853353.03f1a0e3760b.341.21 +3 -0
- runs/Apr18_21-29-05_03f1a0e3760b/events.out.tfevents.1681853353.03f1a0e3760b.341.20 +3 -0
- special_tokens_map.json +15 -0
- tokenizer.json +3 -0
- tokenizer_config.json +19 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "xlm-roberta-base",
|
3 |
+
"architectures": [
|
4 |
+
"XLMRobertaForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"classifier_dropout": null,
|
9 |
+
"eos_token_id": 2,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 768,
|
13 |
+
"initializer_range": 0.02,
|
14 |
+
"intermediate_size": 3072,
|
15 |
+
"layer_norm_eps": 1e-05,
|
16 |
+
"max_position_embeddings": 514,
|
17 |
+
"model_type": "xlm-roberta",
|
18 |
+
"num_attention_heads": 12,
|
19 |
+
"num_hidden_layers": 12,
|
20 |
+
"output_past": true,
|
21 |
+
"pad_token_id": 1,
|
22 |
+
"position_embedding_type": "absolute",
|
23 |
+
"problem_type": "single_label_classification",
|
24 |
+
"torch_dtype": "float32",
|
25 |
+
"transformers_version": "4.28.1",
|
26 |
+
"type_vocab_size": 1,
|
27 |
+
"use_cache": true,
|
28 |
+
"vocab_size": 250002
|
29 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:124b352ef5811313c7ce84d67c41ba39275390f7eab330864bb85080a0128a54
|
3 |
+
size 1112254133
|
runs/Apr18_19-22-27_03f1a0e3760b/1681845779.3839226/events.out.tfevents.1681845779.03f1a0e3760b.341.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:31eb0e5420b2de137ce7a7a7492ab69bc1b64dda053d89ed2b4501e511443626
|
3 |
+
size 5903
|
runs/Apr18_19-22-27_03f1a0e3760b/events.out.tfevents.1681845779.03f1a0e3760b.341.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d961657118f5128c137a40d7cf75f8bbf64d7ae813cd54696c1c2f062fd1102
|
3 |
+
size 3908
|
runs/Apr18_19-35-37_03f1a0e3760b/1681846547.8366241/events.out.tfevents.1681846547.03f1a0e3760b.341.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:31fd1d0cf78f0e0153233265f81b9a026caa4519016b4047260e0abf71efda98
|
3 |
+
size 5903
|
runs/Apr18_19-35-37_03f1a0e3760b/events.out.tfevents.1681846547.03f1a0e3760b.341.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d043731a45911af8853355fb12166c6ad0b6c5ecdb966f24b803e58f508840c2
|
3 |
+
size 3908
|
runs/Apr18_20-03-52_03f1a0e3760b/1681848249.8165042/events.out.tfevents.1681848249.03f1a0e3760b.341.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:be222536a7c7dab5443ada46b303c925e6c07acdcc86c6e4b697920979f94891
|
3 |
+
size 5903
|
runs/Apr18_20-03-52_03f1a0e3760b/events.out.tfevents.1681848249.03f1a0e3760b.341.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0011bd08bd94a897629252db1ffc9689c1c78503d2907aa4238e697f4e56be71
|
3 |
+
size 3908
|
runs/Apr18_20-09-45_03f1a0e3760b/1681848592.6540282/events.out.tfevents.1681848592.03f1a0e3760b.341.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e24758b3a09a7cf1504a9c6fe374b727df1c19c9a408c26c0c38f10de91a8e57
|
3 |
+
size 5903
|
runs/Apr18_20-09-45_03f1a0e3760b/events.out.tfevents.1681848592.03f1a0e3760b.341.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a5c885e1005d602b1542c385488733de78bc95177a4446033ffe6c01d9e6b64b
|
3 |
+
size 3908
|
runs/Apr18_20-10-20_03f1a0e3760b/1681848628.0434437/events.out.tfevents.1681848628.03f1a0e3760b.341.11
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e827594b9b9cc815209b823200c905cf3cec68b35d20de6591c3a70ea9b523e
|
3 |
+
size 5903
|
runs/Apr18_20-10-20_03f1a0e3760b/events.out.tfevents.1681848628.03f1a0e3760b.341.10
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4616ea2e3325f3591f9feba6c9cc9141ed1f9edbaee83c8ecda840dd78712911
|
3 |
+
size 3908
|
runs/Apr18_20-29-31_03f1a0e3760b/1681849777.2321415/events.out.tfevents.1681849777.03f1a0e3760b.341.13
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:815305674072cb4bac3979bb3d4b74058fd50f4317af0dbee9f02ab9952ed2c6
|
3 |
+
size 5903
|
runs/Apr18_20-29-31_03f1a0e3760b/events.out.tfevents.1681849777.03f1a0e3760b.341.12
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:760efabcafb84168601f9a07f189595f6b07bf59a86b66d5c43883d587f447de
|
3 |
+
size 3908
|
runs/Apr18_20-43-01_03f1a0e3760b/1681850588.9942942/events.out.tfevents.1681850588.03f1a0e3760b.341.15
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9d97427a15a662469d40c61a48d98c20f610c2010a03cab1d893d2ee8a37d036
|
3 |
+
size 5903
|
runs/Apr18_20-43-01_03f1a0e3760b/events.out.tfevents.1681850588.03f1a0e3760b.341.14
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:345d5e1389b0d845d346fb1ced1ca006cdf9126551a62c97966fc35f2d8e5fce
|
3 |
+
size 4063
|
runs/Apr18_20-44-35_03f1a0e3760b/1681850682.9172428/events.out.tfevents.1681850682.03f1a0e3760b.341.17
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1fb1b2c684c398a4ec887a46dbbf6a42709f05f23ffb2a1b56f2a96ca83d7792
|
3 |
+
size 5903
|
runs/Apr18_20-44-35_03f1a0e3760b/events.out.tfevents.1681850682.03f1a0e3760b.341.16
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:87f04c6d6f928e6604d055c94a5f3171271af8cd6638b83b4f2276e376200dcc
|
3 |
+
size 4063
|
runs/Apr18_20-51-22_03f1a0e3760b/1681851088.625657/events.out.tfevents.1681851088.03f1a0e3760b.341.19
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:22f075ac4c166cc57e17eb66911485e038e6c87eae25d8504a9ae373d6e0e7c9
|
3 |
+
size 5903
|
runs/Apr18_20-51-22_03f1a0e3760b/events.out.tfevents.1681851088.03f1a0e3760b.341.18
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d1daff9b8e072d56ad570b9891b04f28f3264ea945c3e07ba341ebd806c14a8f
|
3 |
+
size 4063
|
runs/Apr18_21-29-05_03f1a0e3760b/1681853353.563434/events.out.tfevents.1681853353.03f1a0e3760b.341.21
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e50314c36f8eb8e1ce0695ef617b8563fef0323a61e8c2d39021700dfb6ee9ab
|
3 |
+
size 5903
|
runs/Apr18_21-29-05_03f1a0e3760b/events.out.tfevents.1681853353.03f1a0e3760b.341.20
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f6b05ba3bb975750ec8f0b34d8d3b24a2fc4e58434a78716bdf904f5248bb2a
|
3 |
+
size 88
|
special_tokens_map.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"cls_token": "<s>",
|
4 |
+
"eos_token": "</s>",
|
5 |
+
"mask_token": {
|
6 |
+
"content": "<mask>",
|
7 |
+
"lstrip": true,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false
|
11 |
+
},
|
12 |
+
"pad_token": "<pad>",
|
13 |
+
"sep_token": "</s>",
|
14 |
+
"unk_token": "<unk>"
|
15 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:62c24cdc13d4c9952d63718d6c9fa4c287974249e16b7ade6d5a85e7bbb75626
|
3 |
+
size 17082660
|
tokenizer_config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"clean_up_tokenization_spaces": true,
|
4 |
+
"cls_token": "<s>",
|
5 |
+
"eos_token": "</s>",
|
6 |
+
"mask_token": {
|
7 |
+
"__type": "AddedToken",
|
8 |
+
"content": "<mask>",
|
9 |
+
"lstrip": true,
|
10 |
+
"normalized": true,
|
11 |
+
"rstrip": false,
|
12 |
+
"single_word": false
|
13 |
+
},
|
14 |
+
"model_max_length": 512,
|
15 |
+
"pad_token": "<pad>",
|
16 |
+
"sep_token": "</s>",
|
17 |
+
"tokenizer_class": "XLMRobertaTokenizer",
|
18 |
+
"unk_token": "<unk>"
|
19 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0d8271694779ebb3bc4f9180ab23001b366cc4c5224a10b51dba45b7b6840e6
|
3 |
+
size 3643
|