Aurelie123 commited on
Commit
8c24dc9
·
verified ·
1 Parent(s): 1f53cab

Training in progress, step 500

Browse files
config.json CHANGED
@@ -1,24 +1,30 @@
1
  {
2
  "architectures": [
3
- "BertForQuestionAnswering"
4
  ],
5
  "attention_probs_dropout_prob": 0.1,
 
6
  "classifier_dropout": null,
 
 
7
  "hidden_act": "gelu",
8
  "hidden_dropout_prob": 0.1,
9
- "hidden_size": 1024,
10
  "initializer_range": 0.02,
11
- "intermediate_size": 4096,
12
- "layer_norm_eps": 1e-12,
13
- "max_position_embeddings": 512,
14
- "model_type": "bert",
15
- "num_attention_heads": 16,
16
- "num_hidden_layers": 24,
17
- "pad_token_id": 0,
 
 
 
18
  "position_embedding_type": "absolute",
19
  "torch_dtype": "float32",
20
  "transformers_version": "4.53.2",
21
- "type_vocab_size": 2,
22
  "use_cache": true,
23
- "vocab_size": 30522
24
  }
 
1
  {
2
  "architectures": [
3
+ "XLMRobertaForQuestionAnswering"
4
  ],
5
  "attention_probs_dropout_prob": 0.1,
6
+ "bos_token_id": 0,
7
  "classifier_dropout": null,
8
+ "eos_token_id": 2,
9
+ "gradient_checkpointing": false,
10
  "hidden_act": "gelu",
11
  "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
  "initializer_range": 0.02,
14
+ "intermediate_size": 3072,
15
+ "language": "english",
16
+ "layer_norm_eps": 1e-05,
17
+ "max_position_embeddings": 514,
18
+ "model_type": "xlm-roberta",
19
+ "name": "XLMRoberta",
20
+ "num_attention_heads": 12,
21
+ "num_hidden_layers": 12,
22
+ "output_past": true,
23
+ "pad_token_id": 1,
24
  "position_embedding_type": "absolute",
25
  "torch_dtype": "float32",
26
  "transformers_version": "4.53.2",
27
+ "type_vocab_size": 1,
28
  "use_cache": true,
29
+ "vocab_size": 250002
30
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e93bf266d0f4dfed4e1e75a7bc3faa894613c9b5a87bbb3aed6f7332ef82180a
3
- size 1336424168
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bec6a79e760c17938ab2a5f8f3b36a679362fd4319bc9c74e6e9639e32c836e
3
+ size 1109842416
runs/Jul23_12-56-12_56f5701f9ba6/events.out.tfevents.1753275375.56f5701f9ba6.1380.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c17c869e8a3ff079f85bf862c1850c2688aabf5fcc0062f0eda91832d734643d
3
+ size 5838
special_tokens_map.json CHANGED
@@ -1,7 +1,15 @@
1
  {
2
- "cls_token": "[CLS]",
3
- "mask_token": "[MASK]",
4
- "pad_token": "[PAD]",
5
- "sep_token": "[SEP]",
6
- "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
7
  }
 
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 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:88288f3bbc81d03d5cc31434d30f8bd3c80771c9875a75fa763d167a8e34889e
3
- size 711661
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27659330da3a728337a458ae70d3bec0244950f6c9ee267ea68ed6ff17e09df5
3
+ size 17098516
tokenizer_config.json CHANGED
@@ -1,56 +1,58 @@
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
- "content": "[PAD]",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
8
  "single_word": false,
9
  "special": true
10
  },
11
- "100": {
12
- "content": "[UNK]",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
- "101": {
20
- "content": "[CLS]",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
- "102": {
28
- "content": "[SEP]",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
- "103": {
36
- "content": "[MASK]",
37
- "lstrip": false,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
41
  "special": true
42
  }
43
  },
 
44
  "clean_up_tokenization_spaces": false,
45
- "cls_token": "[CLS]",
46
- "do_lower_case": true,
 
47
  "extra_special_tokens": {},
48
- "mask_token": "[MASK]",
 
49
  "model_max_length": 512,
50
- "pad_token": "[PAD]",
51
- "sep_token": "[SEP]",
52
- "strip_accents": null,
53
- "tokenize_chinese_chars": true,
54
- "tokenizer_class": "BertTokenizer",
55
- "unk_token": "[UNK]"
56
  }
 
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": false,
46
+ "cls_token": "<s>",
47
+ "do_lower_case": false,
48
+ "eos_token": "</s>",
49
  "extra_special_tokens": {},
50
+ "full_tokenizer_file": null,
51
+ "mask_token": "<mask>",
52
  "model_max_length": 512,
53
+ "pad_token": "<pad>",
54
+ "sep_token": "</s>",
55
+ "sp_model_kwargs": {},
56
+ "tokenizer_class": "XLMRobertaTokenizer",
57
+ "unk_token": "<unk>"
 
58
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ef3bee5749e2b3978e9e67cfb83fff73b317e2647f5e7854d5db6022b630b485
3
  size 5304
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74a015f4cff1370d06a432e0c542a359108f14aae9753e6da474cf00e6a37fad
3
  size 5304