sandromck commited on
Commit
4bec9b5
·
1 Parent(s): 46f2014

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,11 +1,12 @@
1
  {
2
- "_name_or_path": "bert-base-cased",
3
  "architectures": [
4
- "BertForSequenceClassification"
5
  ],
6
  "attention_probs_dropout_prob": 0.1,
 
7
  "classifier_dropout": null,
8
- "gradient_checkpointing": false,
9
  "hidden_act": "gelu",
10
  "hidden_dropout_prob": 0.1,
11
  "hidden_size": 768,
@@ -35,17 +36,18 @@
35
  "LABEL_8": 8,
36
  "LABEL_9": 9
37
  },
38
- "layer_norm_eps": 1e-12,
39
- "max_position_embeddings": 512,
40
- "model_type": "bert",
41
  "num_attention_heads": 12,
42
  "num_hidden_layers": 12,
43
- "pad_token_id": 0,
 
44
  "position_embedding_type": "absolute",
45
  "problem_type": "single_label_classification",
46
  "torch_dtype": "float32",
47
  "transformers_version": "4.34.0",
48
- "type_vocab_size": 2,
49
  "use_cache": true,
50
- "vocab_size": 28996
51
  }
 
1
  {
2
+ "_name_or_path": "classla/xlm-roberta-base-multilingual-text-genre-classifier",
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,
 
36
  "LABEL_8": 8,
37
  "LABEL_9": 9
38
  },
39
+ "layer_norm_eps": 1e-05,
40
+ "max_position_embeddings": 514,
41
+ "model_type": "xlm-roberta",
42
  "num_attention_heads": 12,
43
  "num_hidden_layers": 12,
44
+ "output_past": true,
45
+ "pad_token_id": 1,
46
  "position_embedding_type": "absolute",
47
  "problem_type": "single_label_classification",
48
  "torch_dtype": "float32",
49
  "transformers_version": "4.34.0",
50
+ "type_vocab_size": 1,
51
  "use_cache": true,
52
+ "vocab_size": 250002
53
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:22de718c787b831c8743ab05de09f540ae1700788bc3b5f7768fd6ea27003dab
3
- size 433340209
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddca2724afcb1fe8a83d0183124dfc01531a6d84482ca9f25d149ae4f2e6f1b4
3
+ size 1112274289
special_tokens_map.json CHANGED
@@ -1,7 +1,9 @@
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": "<mask>",
6
+ "pad_token": "<pad>",
7
+ "sep_token": "</s>",
8
+ "unk_token": "<unk>"
9
  }
tokenizer.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cb26b43c98e8266ae3e99c2a583cf8315d73b33a17e6b20b4df7ff1f22392d34
3
- size 669021
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:003498ab0695fbf35aedc8bbbae1e20a6033a1b3914e49c6d2fbe1d54d7d93b9
3
+ size 17082786
tokenizer_config.json CHANGED
@@ -1,40 +1,40 @@
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,
@@ -42,15 +42,22 @@
42
  }
43
  },
44
  "additional_special_tokens": [],
 
45
  "clean_up_tokenization_spaces": true,
46
- "cls_token": "[CLS]",
47
  "do_lower_case": false,
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,
 
42
  }
43
  },
44
  "additional_special_tokens": [],
45
+ "bos_token": "<s>",
46
  "clean_up_tokenization_spaces": true,
47
+ "cls_token": "<s>",
48
  "do_lower_case": false,
49
+ "eos_token": "</s>",
50
+ "mask_token": "<mask>",
51
+ "max_length": 512,
52
  "model_max_length": 512,
53
+ "pad_to_multiple_of": null,
54
+ "pad_token": "<pad>",
55
+ "pad_token_type_id": 0,
56
+ "padding_side": "right",
57
+ "sep_token": "</s>",
58
+ "stride": 0,
59
+ "tokenizer_class": "XLMRobertaTokenizer",
60
+ "truncation_side": "right",
61
+ "truncation_strategy": "longest_first",
62
+ "unk_token": "<unk>"
63
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:49d06c2710569eb4f75c15b57bc89dfb22ebf9fe0275c8911ec0f2b1aa2c5e36
3
  size 4091
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67893a02e9e42dcf72d5d8f04dda10be72b3ed7bee7d8172eabb140983f9260e
3
  size 4091