Shariar433 commited on
Commit
0c4c183
1 Parent(s): 7a549e8

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +64 -17
config.json CHANGED
@@ -1,19 +1,66 @@
1
  {
2
- "architectures": [
3
- "BertForMaskedLM"
4
- ],
5
- "attention_probs_dropout_prob": 0.1,
6
- "hidden_act": "gelu",
7
- "hidden_dropout_prob": 0.1,
8
- "hidden_size": 768,
9
- "initializer_range": 0.02,
10
- "intermediate_size": 3072,
11
- "layer_norm_eps": 1e-12,
12
- "max_position_embeddings": 512,
13
- "model_type": "bert",
14
- "num_attention_heads": 12,
15
- "num_hidden_layers": 12,
16
- "pad_token_id": 0,
17
- "type_vocab_size": 2,
18
- "vocab_size": 30522
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  }
 
1
  {
2
+ "_name_or_path": "bangla-ner",
3
+ "architectures": [
4
+ "ElectraForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "embedding_size": 768,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "E-ORG",
14
+ "1": "S-OBJ",
15
+ "10": "E-PER",
16
+ "11": "S-PER",
17
+ "12": "I-PER",
18
+ "13": "I-LOC",
19
+ "14": "B-OBJ",
20
+ "15": "S-LOC",
21
+ "2": "B-ORG",
22
+ "3": "B-LOC",
23
+ "4": "O",
24
+ "5": "S-ORG",
25
+ "6": "B-PER",
26
+ "7": "E-LOC",
27
+ "8": "I-ORG",
28
+ "9": "E-OBJ"
29
+ },
30
+ "initializer_range": 0.02,
31
+ "intermediate_size": 3072,
32
+ "label2id": {
33
+ "B-LOC": 3,
34
+ "B-OBJ": 14,
35
+ "B-ORG": 2,
36
+ "B-PER": 6,
37
+ "E-LOC": 7,
38
+ "E-OBJ": 9,
39
+ "E-ORG": 0,
40
+ "E-PER": 10,
41
+ "I-LOC": 13,
42
+ "I-ORG": 8,
43
+ "I-PER": 12,
44
+ "O": 4,
45
+ "S-LOC": 15,
46
+ "S-OBJ": 1,
47
+ "S-ORG": 5,
48
+ "S-PER": 11
49
+ },
50
+ "layer_norm_eps": 1e-12,
51
+ "max_position_embeddings": 512,
52
+ "model_type": "electra",
53
+ "num_attention_heads": 12,
54
+ "num_hidden_layers": 12,
55
+ "pad_token_id": 0,
56
+ "position_embedding_type": "absolute",
57
+ "summary_activation": "gelu",
58
+ "summary_last_dropout": 0.1,
59
+ "summary_type": "first",
60
+ "summary_use_proj": true,
61
+ "torch_dtype": "float32",
62
+ "transformers_version": "4.37.2",
63
+ "type_vocab_size": 2,
64
+ "use_cache": true,
65
+ "vocab_size": 32000
66
  }