EhsanYB commited on
Commit
2ecec35
·
1 Parent(s): 0943615

Training in progress, epoch 1

Browse files
Files changed (6) hide show
  1. config.json +33 -27
  2. pytorch_model.bin +2 -2
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +1 -1
  5. training_args.bin +1 -1
  6. vocab.txt +0 -0
config.json CHANGED
@@ -1,42 +1,48 @@
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": "B-ROL",
14
- "2": "I-ROL",
15
- "3": "B-ACT",
16
- "4": "I-ACT",
17
- "5": "B-OBJ",
18
- "6": "I-OBJ"
 
 
19
  },
20
  "initializer_range": 0.02,
 
21
  "label2id": {
22
- "B-ACT": "3",
23
- "B-OBJ": "5",
24
- "B-ROL": "1",
25
- "I-ACT": "4",
26
- "I-OBJ": "6",
27
- "I-ROL": "2",
 
 
28
  "O": "0"
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.12.5",
41
- "vocab_size": 30522
 
 
42
  }
 
1
  {
2
+ "_name_or_path": "bert-base-cased",
 
3
  "architectures": [
4
+ "BertForTokenClassification"
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,
12
  "id2label": {
13
  "0": "O",
14
+ "1": "B-PER",
15
+ "2": "I-PER",
16
+ "3": "B-ORG",
17
+ "4": "I-ORG",
18
+ "5": "B-LOC",
19
+ "6": "I-LOC",
20
+ "7": "B-MISC",
21
+ "8": "I-MISC"
22
  },
23
  "initializer_range": 0.02,
24
+ "intermediate_size": 3072,
25
  "label2id": {
26
+ "B-LOC": "5",
27
+ "B-MISC": "7",
28
+ "B-ORG": "3",
29
+ "B-PER": "1",
30
+ "I-LOC": "6",
31
+ "I-MISC": "8",
32
+ "I-ORG": "4",
33
+ "I-PER": "2",
34
  "O": "0"
35
  },
36
+ "layer_norm_eps": 1e-12,
37
  "max_position_embeddings": 512,
38
+ "model_type": "bert",
39
+ "num_attention_heads": 12,
40
+ "num_hidden_layers": 12,
41
  "pad_token_id": 0,
42
+ "position_embedding_type": "absolute",
 
 
 
43
  "torch_dtype": "float32",
44
  "transformers_version": "4.12.5",
45
+ "type_vocab_size": 2,
46
+ "use_cache": true,
47
+ "vocab_size": 28996
48
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:271733686233e5b2b5eeaf0f0de1cf420f56034377426c2dcc08e6d5c14fa825
3
- size 265511029
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38095d2125536cf4e7103bfbf241a1f2e7cfb892a9a62ec5e91a73b71ee1b602
3
+ size 430986993
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1 +1 @@
1
- {"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
 
1
+ {"do_lower_case": false, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "bert-base-cased", "tokenizer_class": "BertTokenizer"}
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fcd3731dc2661647e22dc1c5ff108974f1c47be3ad303c5e4c95980412e335ce
3
  size 2863
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:248f07d4484b6c820d472549cf83a66e63a030a0db31fee7b69731eae4c8d2ae
3
  size 2863
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff