aadhistii commited on
Commit
0455a03
1 Parent(s): 7ffb9ee

Training in progress epoch 0

Browse files
Files changed (7) hide show
  1. README.md +58 -0
  2. config.json +109 -0
  3. special_tokens_map.json +7 -0
  4. tf_model.h5 +3 -0
  5. tokenizer.json +0 -0
  6. tokenizer_config.json +57 -0
  7. vocab.txt +0 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: indolem/indobert-base-uncased
4
+ tags:
5
+ - generated_from_keras_callback
6
+ model-index:
7
+ - name: aadhistii/indobert-ner-model
8
+ results: []
9
+ ---
10
+
11
+ <!-- This model card has been generated automatically according to the information Keras had access to. You should
12
+ probably proofread and complete it, then remove this comment. -->
13
+
14
+ # aadhistii/indobert-ner-model
15
+
16
+ This model is a fine-tuned version of [indolem/indobert-base-uncased](https://huggingface.co/indolem/indobert-base-uncased) on an unknown dataset.
17
+ It achieves the following results on the evaluation set:
18
+ - Train Loss: 0.5182
19
+ - Validation Loss: 0.2042
20
+ - Train Precision: 0.7770
21
+ - Train Recall: 0.8146
22
+ - Train F1: 0.7954
23
+ - Train Accuracy: 0.9395
24
+ - Epoch: 0
25
+
26
+ ## Model description
27
+
28
+ More information needed
29
+
30
+ ## Intended uses & limitations
31
+
32
+ More information needed
33
+
34
+ ## Training and evaluation data
35
+
36
+ More information needed
37
+
38
+ ## Training procedure
39
+
40
+ ### Training hyperparameters
41
+
42
+ The following hyperparameters were used during training:
43
+ - optimizer: {'name': 'AdamWeightDecay', 'learning_rate': {'module': 'keras.optimizers.schedules', 'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 2349, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered_name': None}, 'decay': 0.0, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False, 'weight_decay_rate': 0.01}
44
+ - training_precision: float32
45
+
46
+ ### Training results
47
+
48
+ | Train Loss | Validation Loss | Train Precision | Train Recall | Train F1 | Train Accuracy | Epoch |
49
+ |:----------:|:---------------:|:---------------:|:------------:|:--------:|:--------------:|:-----:|
50
+ | 0.5182 | 0.2042 | 0.7770 | 0.8146 | 0.7954 | 0.9395 | 0 |
51
+
52
+
53
+ ### Framework versions
54
+
55
+ - Transformers 4.41.1
56
+ - TensorFlow 2.15.0
57
+ - Datasets 2.19.1
58
+ - Tokenizers 0.19.1
config.json ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "0": "B-CRD",
15
+ "1": "B-DAT",
16
+ "2": "B-EVT",
17
+ "3": "B-FAC",
18
+ "4": "B-GPE",
19
+ "5": "B-LAN",
20
+ "6": "B-LAW",
21
+ "7": "B-LOC",
22
+ "8": "B-MON",
23
+ "9": "B-NOR",
24
+ "10": "B-ORD",
25
+ "11": "B-ORG",
26
+ "12": "B-PER",
27
+ "13": "B-PRC",
28
+ "14": "B-PRD",
29
+ "15": "B-QTY",
30
+ "16": "B-REG",
31
+ "17": "B-TIM",
32
+ "18": "B-WOA",
33
+ "19": "I-CRD",
34
+ "20": "I-DAT",
35
+ "21": "I-EVT",
36
+ "22": "I-FAC",
37
+ "23": "I-GPE",
38
+ "24": "I-LAN",
39
+ "25": "I-LAW",
40
+ "26": "I-LOC",
41
+ "27": "I-MON",
42
+ "28": "I-NOR",
43
+ "29": "I-ORD",
44
+ "30": "I-ORG",
45
+ "31": "I-PER",
46
+ "32": "I-PRC",
47
+ "33": "I-PRD",
48
+ "34": "I-QTY",
49
+ "35": "I-REG",
50
+ "36": "I-TIM",
51
+ "37": "I-WOA",
52
+ "38": "O"
53
+ },
54
+ "initializer_range": 0.02,
55
+ "intermediate_size": 3072,
56
+ "label2id": {
57
+ "B-CRD": 0,
58
+ "B-DAT": 1,
59
+ "B-EVT": 2,
60
+ "B-FAC": 3,
61
+ "B-GPE": 4,
62
+ "B-LAN": 5,
63
+ "B-LAW": 6,
64
+ "B-LOC": 7,
65
+ "B-MON": 8,
66
+ "B-NOR": 9,
67
+ "B-ORD": 10,
68
+ "B-ORG": 11,
69
+ "B-PER": 12,
70
+ "B-PRC": 13,
71
+ "B-PRD": 14,
72
+ "B-QTY": 15,
73
+ "B-REG": 16,
74
+ "B-TIM": 17,
75
+ "B-WOA": 18,
76
+ "I-CRD": 19,
77
+ "I-DAT": 20,
78
+ "I-EVT": 21,
79
+ "I-FAC": 22,
80
+ "I-GPE": 23,
81
+ "I-LAN": 24,
82
+ "I-LAW": 25,
83
+ "I-LOC": 26,
84
+ "I-MON": 27,
85
+ "I-NOR": 28,
86
+ "I-ORD": 29,
87
+ "I-ORG": 30,
88
+ "I-PER": 31,
89
+ "I-PRC": 32,
90
+ "I-PRD": 33,
91
+ "I-QTY": 34,
92
+ "I-REG": 35,
93
+ "I-TIM": 36,
94
+ "I-WOA": 37,
95
+ "O": 38
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
+ "transformers_version": "4.41.1",
106
+ "type_vocab_size": 2,
107
+ "use_cache": true,
108
+ "vocab_size": 31923
109
+ }
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
+ }
tf_model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95ac66ef6f7218ab083ae2d412f37cd5949a1b418bdb9e2ed4407e8d80da6c67
3
+ size 440263780
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "1": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[MASK]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[CLS]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "4": {
36
+ "content": "[SEP]",
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_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 1000000000000000019884624838656,
50
+ "never_split": null,
51
+ "pad_token": "[PAD]",
52
+ "sep_token": "[SEP]",
53
+ "strip_accents": null,
54
+ "tokenize_chinese_chars": true,
55
+ "tokenizer_class": "BertTokenizer",
56
+ "unk_token": "[UNK]"
57
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff