mohammad-osoolian
commited on
Training in progress, epoch 1
Browse files- .gitattributes +1 -0
- config.json +47 -0
- model.safetensors +3 -0
- runs/Feb01_20-27-17_168cbc6b93ad/events.out.tfevents.1706819240.168cbc6b93ad.617.0 +3 -0
- runs/Feb01_20-39-36_168cbc6b93ad/events.out.tfevents.1706819978.168cbc6b93ad.617.1 +3 -0
- runs/Feb01_20-45-58_168cbc6b93ad/events.out.tfevents.1706820365.168cbc6b93ad.617.2 +3 -0
- runs/Feb01_20-48-10_168cbc6b93ad/events.out.tfevents.1706820492.168cbc6b93ad.617.3 +3 -0
- runs/Feb01_20-50-50_168cbc6b93ad/events.out.tfevents.1706820651.168cbc6b93ad.617.4 +3 -0
- runs/Feb01_20-53-02_168cbc6b93ad/events.out.tfevents.1706820783.168cbc6b93ad.617.5 +3 -0
- runs/Feb01_20-55-40_168cbc6b93ad/events.out.tfevents.1706820951.168cbc6b93ad.617.6 +3 -0
- runs/Feb01_20-58-57_168cbc6b93ad/events.out.tfevents.1706821144.168cbc6b93ad.617.7 +3 -0
- runs/Feb01_20-59-47_168cbc6b93ad/events.out.tfevents.1706821189.168cbc6b93ad.617.8 +3 -0
- runs/Feb01_21-03-00_168cbc6b93ad/events.out.tfevents.1706821381.168cbc6b93ad.617.9 +3 -0
- runs/Feb01_21-23-00_168cbc6b93ad/events.out.tfevents.1706822581.168cbc6b93ad.617.10 +3 -0
- runs/Feb01_21-31-51_168cbc6b93ad/events.out.tfevents.1706823128.168cbc6b93ad.617.11 +3 -0
- runs/Feb01_21-52-24_168cbc6b93ad/events.out.tfevents.1706824345.168cbc6b93ad.617.12 +3 -0
- sentencepiece.bpe.model +3 -0
- special_tokens_map.json +15 -0
- tokenizer.json +3 -0
- tokenizer_config.json +54 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
config.json
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "FacebookAI/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 |
+
"id2label": {
|
14 |
+
"0": "LABEL_0",
|
15 |
+
"1": "LABEL_1",
|
16 |
+
"2": "LABEL_2",
|
17 |
+
"3": "LABEL_3",
|
18 |
+
"4": "LABEL_4",
|
19 |
+
"5": "LABEL_5",
|
20 |
+
"6": "LABEL_6"
|
21 |
+
},
|
22 |
+
"initializer_range": 0.02,
|
23 |
+
"intermediate_size": 3072,
|
24 |
+
"label2id": {
|
25 |
+
"LABEL_0": 0,
|
26 |
+
"LABEL_1": 1,
|
27 |
+
"LABEL_2": 2,
|
28 |
+
"LABEL_3": 3,
|
29 |
+
"LABEL_4": 4,
|
30 |
+
"LABEL_5": 5,
|
31 |
+
"LABEL_6": 6
|
32 |
+
},
|
33 |
+
"layer_norm_eps": 1e-05,
|
34 |
+
"max_position_embeddings": 514,
|
35 |
+
"model_type": "xlm-roberta",
|
36 |
+
"num_attention_heads": 12,
|
37 |
+
"num_hidden_layers": 12,
|
38 |
+
"output_past": true,
|
39 |
+
"pad_token_id": 1,
|
40 |
+
"position_embedding_type": "absolute",
|
41 |
+
"problem_type": "multi_label_classification",
|
42 |
+
"torch_dtype": "float32",
|
43 |
+
"transformers_version": "4.35.2",
|
44 |
+
"type_vocab_size": 1,
|
45 |
+
"use_cache": true,
|
46 |
+
"vocab_size": 250002
|
47 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:849da0439e9c47749822302217a547f7c94ca167778288f1a962ac3cbaf298d5
|
3 |
+
size 1112220388
|
runs/Feb01_20-27-17_168cbc6b93ad/events.out.tfevents.1706819240.168cbc6b93ad.617.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8d22f7842ed727f2419b5110584c5643b68bc49233cc4ffa526f8c8961cacfc8
|
3 |
+
size 8226
|
runs/Feb01_20-39-36_168cbc6b93ad/events.out.tfevents.1706819978.168cbc6b93ad.617.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:14fa881fb54e672b2982c5dde91e6b4725b2077f6ca9d9203be8d908cd034e42
|
3 |
+
size 7752
|
runs/Feb01_20-45-58_168cbc6b93ad/events.out.tfevents.1706820365.168cbc6b93ad.617.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f8da9b2b1100969c6818f9cac24206d1e5b1d8ba7d1b77769ab82e85d28f9da2
|
3 |
+
size 4848
|
runs/Feb01_20-48-10_168cbc6b93ad/events.out.tfevents.1706820492.168cbc6b93ad.617.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dbcce603bf43f7f7da8ce1b75a2ba0c4eeb4c44f1654ba72d9a0618572ae7011
|
3 |
+
size 4881
|
runs/Feb01_20-50-50_168cbc6b93ad/events.out.tfevents.1706820651.168cbc6b93ad.617.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:19cdebd50d68fb5694a7a360856caec61fd408a23975b558de11333efa8d1bb3
|
3 |
+
size 4883
|
runs/Feb01_20-53-02_168cbc6b93ad/events.out.tfevents.1706820783.168cbc6b93ad.617.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fd85d400dd9f3bade5d3adf02ad19234e2f22fa5720207445fc8ea49a6f5feac
|
3 |
+
size 5203
|
runs/Feb01_20-55-40_168cbc6b93ad/events.out.tfevents.1706820951.168cbc6b93ad.617.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:29f9eebc0b5be105c70aa05af5d0561af797d8c29a848936982c832025e25d60
|
3 |
+
size 4973
|
runs/Feb01_20-58-57_168cbc6b93ad/events.out.tfevents.1706821144.168cbc6b93ad.617.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2afd2e432aad4bd7fdda60866ece572bc9b10b671a1fb889470575f856b881fd
|
3 |
+
size 4255
|
runs/Feb01_20-59-47_168cbc6b93ad/events.out.tfevents.1706821189.168cbc6b93ad.617.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5b3f9d6c65f929d868a609a0b23c9d0c8d73d358e38c4d7d0b7499597dae4afb
|
3 |
+
size 4883
|
runs/Feb01_21-03-00_168cbc6b93ad/events.out.tfevents.1706821381.168cbc6b93ad.617.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04f2ad35254c18370d21dc2e8333249a5a2901f775a8e5ee99a00fb8e4b16d7c
|
3 |
+
size 6162
|
runs/Feb01_21-23-00_168cbc6b93ad/events.out.tfevents.1706822581.168cbc6b93ad.617.10
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:14a0ee032f7bf2f8ff30c04fa29fe9c799ad35215c00fb64077b1024c9963e56
|
3 |
+
size 6197
|
runs/Feb01_21-31-51_168cbc6b93ad/events.out.tfevents.1706823128.168cbc6b93ad.617.11
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b4bec8ae9f26957ac6efea1f243454a6a1ef7f21261d69e140172a79e47b5700
|
3 |
+
size 21224
|
runs/Feb01_21-52-24_168cbc6b93ad/events.out.tfevents.1706824345.168cbc6b93ad.617.12
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e60fef26cc6ad9639de42162c698e5acb7e6f85d988a9b262498bc845b8ecd5d
|
3 |
+
size 6349
|
sentencepiece.bpe.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
|
3 |
+
size 5069051
|
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:f59925fcb90c92b894cb93e51bb9b4a6105c5c249fe54ce1c704420ac39b81af
|
3 |
+
size 17082756
|
tokenizer_config.json
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "<s>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"1": {
|
12 |
+
"content": "<pad>",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"2": {
|
20 |
+
"content": "</s>",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"3": {
|
28 |
+
"content": "<unk>",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"250001": {
|
36 |
+
"content": "<mask>",
|
37 |
+
"lstrip": true,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"bos_token": "<s>",
|
45 |
+
"clean_up_tokenization_spaces": true,
|
46 |
+
"cls_token": "<s>",
|
47 |
+
"eos_token": "</s>",
|
48 |
+
"mask_token": "<mask>",
|
49 |
+
"model_max_length": 1000000000000000019884624838656,
|
50 |
+
"pad_token": "<pad>",
|
51 |
+
"sep_token": "</s>",
|
52 |
+
"tokenizer_class": "XLMRobertaTokenizer",
|
53 |
+
"unk_token": "<unk>"
|
54 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:21b1aa0936d695577435b8f8396b1efa32ffc864ce33b110bce8f777d8bac5b1
|
3 |
+
size 4664
|