stulcrad commited on
Commit
c72e773
1 Parent(s): 0080343

Training in progress, step 500

Browse files
config.json CHANGED
@@ -1,15 +1,13 @@
1
  {
2
- "_name_or_path": "FacebookAI/xlm-roberta-large",
 
3
  "architectures": [
4
- "XLMRobertaForTokenClassification"
5
  ],
6
- "attention_probs_dropout_prob": 0.15,
7
- "bos_token_id": 0,
8
- "classifier_dropout": null,
9
- "eos_token_id": 2,
10
- "hidden_act": "gelu",
11
- "hidden_dropout_prob": 0.25,
12
- "hidden_size": 1024,
13
  "id2label": {
14
  "0": "O",
15
  "1": "B-A",
@@ -30,7 +28,6 @@
30
  "16": "I-T"
31
  },
32
  "initializer_range": 0.02,
33
- "intermediate_size": 4096,
34
  "label2id": {
35
  "B-A": 1,
36
  "B-G": 3,
@@ -50,17 +47,17 @@
50
  "I-T": 16,
51
  "O": 0
52
  },
53
- "layer_norm_eps": 1e-05,
54
- "max_position_embeddings": 514,
55
- "model_type": "xlm-roberta",
56
- "num_attention_heads": 16,
57
- "num_hidden_layers": 24,
58
  "output_past": true,
59
- "pad_token_id": 1,
60
- "position_embedding_type": "absolute",
 
 
 
61
  "torch_dtype": "float32",
62
  "transformers_version": "4.36.2",
63
- "type_vocab_size": 1,
64
- "use_cache": true,
65
- "vocab_size": 250002
66
  }
 
1
  {
2
+ "_name_or_path": "distilbert/distilbert-base-multilingual-cased",
3
+ "activation": "gelu",
4
  "architectures": [
5
+ "DistilBertForTokenClassification"
6
  ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
 
 
 
11
  "id2label": {
12
  "0": "O",
13
  "1": "B-A",
 
28
  "16": "I-T"
29
  },
30
  "initializer_range": 0.02,
 
31
  "label2id": {
32
  "B-A": 1,
33
  "B-G": 3,
 
47
  "I-T": 16,
48
  "O": 0
49
  },
50
+ "max_position_embeddings": 512,
51
+ "model_type": "distilbert",
52
+ "n_heads": 12,
53
+ "n_layers": 6,
 
54
  "output_past": true,
55
+ "pad_token_id": 0,
56
+ "qa_dropout": 0.1,
57
+ "seq_classif_dropout": 0.2,
58
+ "sinusoidal_pos_embds": false,
59
+ "tie_weights_": true,
60
  "torch_dtype": "float32",
61
  "transformers_version": "4.36.2",
62
+ "vocab_size": 119547
 
 
63
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:32cd2fd1f607842749fd87b87eed44b0a82a0723dab2880e2af9035f22450d31
3
- size 2235481556
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29cd8cdbb25e76fa2a60a4f38501221dc61958c1ff2d66e28b1a320264ec2aa9
3
+ size 539000964
runs/Mar07_11-42-49_g04/events.out.tfevents.1709814604.g04.23973.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff7dad5bb942677e4d97005a3d8c5f5a1a7de3b2fc62be243481a15cbf60914a
3
+ size 10311
special_tokens_map.json CHANGED
@@ -1,15 +1,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
  }
 
1
  {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
7
  }
tokenizer.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f59925fcb90c92b894cb93e51bb9b4a6105c5c249fe54ce1c704420ac39b81af
3
- size 17082756
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf1b59b7b11c95f194f51708d918eea378e09d05f84c0e1656dc5180e8117088
3
+ size 2919362
tokenizer_config.json CHANGED
@@ -1,54 +1,55 @@
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": 512,
50
- "pad_token": "<pad>",
51
- "sep_token": "</s>",
52
- "tokenizer_class": "XLMRobertaTokenizer",
53
- "unk_token": "<unk>"
 
 
54
  }
 
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": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": false,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 1000000000000000019884624838656,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
54
+ "unk_token": "[UNK]"
55
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3b8017a03ecf370158192fb756260f6b347d8b732e32f893a69ec8ba6229f729
3
  size 4728
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ece565491a3bde8ecc50535ebd01e1cb20b2f93c6bc1f0e5a6149aef946c8e43
3
  size 4728
vocab.txt ADDED
The diff for this file is too large to render. See raw diff