lash commited on
Commit
19bd5ef
1 Parent(s): 7808f50

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,13 +1,14 @@
1
  {
2
- "_name_or_path": "distilbert-base-uncased",
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": "WHAT",
@@ -18,6 +19,7 @@
18
  "6": "WHY"
19
  },
20
  "initializer_range": 0.02,
 
21
  "label2id": {
22
  "HOW": 5,
23
  "O": 0,
@@ -27,16 +29,21 @@
27
  "WHO": 4,
28
  "WHY": 6
29
  },
 
30
  "max_position_embeddings": 512,
31
- "model_type": "distilbert",
32
- "n_heads": 12,
33
- "n_layers": 6,
34
  "pad_token_id": 0,
35
- "qa_dropout": 0.1,
36
- "seq_classif_dropout": 0.2,
37
- "sinusoidal_pos_embds": false,
38
- "tie_weights_": true,
 
 
39
  "torch_dtype": "float32",
40
  "transformers_version": "4.38.2",
41
- "vocab_size": 30522
 
 
42
  }
 
1
  {
2
+ "_name_or_path": "Babelscape/wikineural-multilingual-ner",
 
3
  "architectures": [
4
+ "BertForTokenClassification"
5
  ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
  "id2label": {
13
  "0": "O",
14
  "1": "WHAT",
 
19
  "6": "WHY"
20
  },
21
  "initializer_range": 0.02,
22
+ "intermediate_size": 3072,
23
  "label2id": {
24
  "HOW": 5,
25
  "O": 0,
 
29
  "WHO": 4,
30
  "WHY": 6
31
  },
32
+ "layer_norm_eps": 1e-12,
33
  "max_position_embeddings": 512,
34
+ "model_type": "bert",
35
+ "num_attention_heads": 12,
36
+ "num_hidden_layers": 12,
37
  "pad_token_id": 0,
38
+ "pooler_fc_size": 768,
39
+ "pooler_num_attention_heads": 12,
40
+ "pooler_num_fc_layers": 3,
41
+ "pooler_size_per_head": 128,
42
+ "pooler_type": "first_token_transform",
43
+ "position_embedding_type": "absolute",
44
  "torch_dtype": "float32",
45
  "transformers_version": "4.38.2",
46
+ "type_vocab_size": 2,
47
+ "use_cache": true,
48
+ "vocab_size": 119547
49
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6e00a057c96fcd22713d0f7654dc7033dae47b6dbf22df6374ccb8053933573a
3
- size 265485396
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36efe404dd16ec94ac137b34f106f7dd8f81f34e9989f5689748a540ca258361
3
+ size 709096284
special_tokens_map.json CHANGED
@@ -1,7 +1,37 @@
1
  {
2
- "cls_token": "[CLS]",
3
- "mask_token": "[MASK]",
4
- "pad_token": "[PAD]",
5
- "sep_token": "[SEP]",
6
- "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
 
1
  {
2
+ "cls_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "mask_token": {
10
+ "content": "[MASK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "sep_token": {
24
+ "content": "[SEP]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "unk_token": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ }
37
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -43,13 +43,17 @@
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
- "do_lower_case": true,
47
  "mask_token": "[MASK]",
 
48
  "model_max_length": 512,
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
  }
 
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
+ "do_lower_case": false,
47
  "mask_token": "[MASK]",
48
+ "max_length": 512,
49
  "model_max_length": 512,
50
  "pad_token": "[PAD]",
51
  "sep_token": "[SEP]",
52
+ "stride": 0,
53
  "strip_accents": null,
54
  "tokenize_chinese_chars": true,
55
+ "tokenizer_class": "BertTokenizer",
56
+ "truncation_side": "right",
57
+ "truncation_strategy": "longest_first",
58
  "unk_token": "[UNK]"
59
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:efa5dee738df0e99e6ab65d1fffd6a61f87bc6ecc74ecb197af9923f7bfeb80c
3
  size 4856
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2f41008125733c61ab7e21e148968fd40e2e8de7ba23fcec0743cf83e99481a
3
  size 4856
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff