Commit
·
8d82aea
1
Parent(s):
dd456be
Training in progress, epoch 1
Browse files- config.json +110 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +15 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "indolem/indobert-base-uncased",
|
3 |
+
"architectures": [
|
4 |
+
"BertForTokenClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"classifier_dropout": null,
|
9 |
+
"eos_token_ids": 0,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 768,
|
13 |
+
"id2label": {
|
14 |
+
"1": "B-CRD",
|
15 |
+
"2": "B-DAT",
|
16 |
+
"3": "B-EVT",
|
17 |
+
"4": "B-FAC",
|
18 |
+
"5": "B-GPE",
|
19 |
+
"6": "B-LAN",
|
20 |
+
"7": "B-LAW",
|
21 |
+
"8": "B-LOC",
|
22 |
+
"9": "B-MON",
|
23 |
+
"10": "B-NOR",
|
24 |
+
"11": "B-ORD",
|
25 |
+
"12": "B-ORG",
|
26 |
+
"13": "B-PER",
|
27 |
+
"14": "B-PRC",
|
28 |
+
"15": "B-PRD",
|
29 |
+
"16": "B-QTY",
|
30 |
+
"17": "B-REG",
|
31 |
+
"18": "B-TIM",
|
32 |
+
"19": "B-WOA",
|
33 |
+
"20": "I-CRD",
|
34 |
+
"21": "I-DAT",
|
35 |
+
"22": "I-EVT",
|
36 |
+
"23": "I-FAC",
|
37 |
+
"24": "I-GPE",
|
38 |
+
"25": "I-LAN",
|
39 |
+
"26": "I-LAW",
|
40 |
+
"27": "I-LOC",
|
41 |
+
"28": "I-MON",
|
42 |
+
"29": "I-NOR",
|
43 |
+
"30": "I-ORD",
|
44 |
+
"31": "I-ORG",
|
45 |
+
"32": "I-PER",
|
46 |
+
"33": "I-PRC",
|
47 |
+
"34": "I-PRD",
|
48 |
+
"35": "I-QTY",
|
49 |
+
"36": "I-REG",
|
50 |
+
"37": "I-TIM",
|
51 |
+
"38": "I-WOA",
|
52 |
+
"39": "O"
|
53 |
+
},
|
54 |
+
"initializer_range": 0.02,
|
55 |
+
"intermediate_size": 3072,
|
56 |
+
"label2id": {
|
57 |
+
"B-CRD": 1,
|
58 |
+
"B-DAT": 2,
|
59 |
+
"B-EVT": 3,
|
60 |
+
"B-FAC": 4,
|
61 |
+
"B-GPE": 5,
|
62 |
+
"B-LAN": 6,
|
63 |
+
"B-LAW": 7,
|
64 |
+
"B-LOC": 8,
|
65 |
+
"B-MON": 9,
|
66 |
+
"B-NOR": 10,
|
67 |
+
"B-ORD": 11,
|
68 |
+
"B-ORG": 12,
|
69 |
+
"B-PER": 13,
|
70 |
+
"B-PRC": 14,
|
71 |
+
"B-PRD": 15,
|
72 |
+
"B-QTY": 16,
|
73 |
+
"B-REG": 17,
|
74 |
+
"B-TIM": 18,
|
75 |
+
"B-WOA": 19,
|
76 |
+
"I-CRD": 20,
|
77 |
+
"I-DAT": 21,
|
78 |
+
"I-EVT": 22,
|
79 |
+
"I-FAC": 23,
|
80 |
+
"I-GPE": 24,
|
81 |
+
"I-LAN": 25,
|
82 |
+
"I-LAW": 26,
|
83 |
+
"I-LOC": 27,
|
84 |
+
"I-MON": 28,
|
85 |
+
"I-NOR": 29,
|
86 |
+
"I-ORD": 30,
|
87 |
+
"I-ORG": 31,
|
88 |
+
"I-PER": 32,
|
89 |
+
"I-PRC": 33,
|
90 |
+
"I-PRD": 34,
|
91 |
+
"I-QTY": 35,
|
92 |
+
"I-REG": 36,
|
93 |
+
"I-TIM": 37,
|
94 |
+
"I-WOA": 38,
|
95 |
+
"O": 39
|
96 |
+
},
|
97 |
+
"layer_norm_eps": 1e-12,
|
98 |
+
"max_position_embeddings": 512,
|
99 |
+
"model_type": "bert",
|
100 |
+
"num_attention_heads": 12,
|
101 |
+
"num_hidden_layers": 12,
|
102 |
+
"output_past": true,
|
103 |
+
"pad_token_id": 0,
|
104 |
+
"position_embedding_type": "absolute",
|
105 |
+
"torch_dtype": "float32",
|
106 |
+
"transformers_version": "4.33.2",
|
107 |
+
"type_vocab_size": 2,
|
108 |
+
"use_cache": true,
|
109 |
+
"vocab_size": 31923
|
110 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8eed7293fd00205df1af78d2049b073dae3326b092b84de6fd69e268a83e9f6b
|
3 |
+
size 440058153
|
special_tokens_map.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"mask_token": "[MASK]",
|
4 |
+
"pad_token": "[PAD]",
|
5 |
+
"sep_token": "[SEP]",
|
6 |
+
"unk_token": "[UNK]"
|
7 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"clean_up_tokenization_spaces": true,
|
3 |
+
"cls_token": "[CLS]",
|
4 |
+
"do_basic_tokenize": true,
|
5 |
+
"do_lower_case": true,
|
6 |
+
"mask_token": "[MASK]",
|
7 |
+
"model_max_length": 1000000000000000019884624838656,
|
8 |
+
"never_split": null,
|
9 |
+
"pad_token": "[PAD]",
|
10 |
+
"sep_token": "[SEP]",
|
11 |
+
"strip_accents": null,
|
12 |
+
"tokenize_chinese_chars": true,
|
13 |
+
"tokenizer_class": "BertTokenizer",
|
14 |
+
"unk_token": "[UNK]"
|
15 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:545a6144063ad7275c3137736a17c5748e7f3ebb1bd2861ad9fe9b049f9fe578
|
3 |
+
size 4027
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|