mirfan899 commited on
Commit
c0d80ff
·
1 Parent(s): 14774f8

End of training

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
- license: apache-2.0
3
- base_model: google/muril-base-cased
4
  tags:
5
  - generated_from_trainer
6
  metrics:
@@ -18,13 +18,13 @@ should probably proofread and complete it, then remove this comment. -->
18
 
19
  # uner-muril-ner
20
 
21
- This model is a fine-tuned version of [google/muril-base-cased](https://huggingface.co/google/muril-base-cased) on an unknown dataset.
22
  It achieves the following results on the evaluation set:
23
- - Loss: 1.5456
24
- - Precision: 0.0
25
- - Recall: 0.0
26
- - F1: 0.0
27
- - Accuracy: 0.8266
28
 
29
  ## Model description
30
 
@@ -53,13 +53,13 @@ The following hyperparameters were used during training:
53
 
54
  ### Training results
55
 
56
- | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
57
- |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:---:|:--------:|
58
- | No log | 1.0 | 144 | 1.8170 | 0.0 | 0.0 | 0.0 | 0.8266 |
59
- | No log | 2.0 | 288 | 1.7102 | 0.0 | 0.0 | 0.0 | 0.8266 |
60
- | No log | 3.0 | 432 | 1.6219 | 0.0 | 0.0 | 0.0 | 0.8266 |
61
- | 1.7546 | 4.0 | 576 | 1.5650 | 0.0 | 0.0 | 0.0 | 0.8266 |
62
- | 1.7546 | 5.0 | 720 | 1.5456 | 0.0 | 0.0 | 0.0 | 0.8266 |
63
 
64
 
65
  ### Framework versions
 
1
  ---
2
+ license: mit
3
+ base_model: ai4bharat/indic-bert
4
  tags:
5
  - generated_from_trainer
6
  metrics:
 
18
 
19
  # uner-muril-ner
20
 
21
+ This model is a fine-tuned version of [ai4bharat/indic-bert](https://huggingface.co/ai4bharat/indic-bert) on an unknown dataset.
22
  It achieves the following results on the evaluation set:
23
+ - Loss: 0.6152
24
+ - Precision: 0.0391
25
+ - Recall: 0.0131
26
+ - F1: 0.0196
27
+ - Accuracy: 0.8261
28
 
29
  ## Model description
30
 
 
53
 
54
  ### Training results
55
 
56
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
57
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
58
+ | No log | 1.0 | 144 | 0.7361 | 0.0 | 0.0 | 0.0 | 0.8181 |
59
+ | No log | 2.0 | 288 | 0.6689 | 0.0 | 0.0 | 0.0 | 0.8181 |
60
+ | No log | 3.0 | 432 | 0.6523 | 0.0154 | 0.0016 | 0.0030 | 0.8182 |
61
+ | 0.6809 | 4.0 | 576 | 0.6231 | 0.0375 | 0.0123 | 0.0185 | 0.8246 |
62
+ | 0.6809 | 5.0 | 720 | 0.6152 | 0.0391 | 0.0131 | 0.0196 | 0.8261 |
63
 
64
 
65
  ### Framework versions
added_tokens.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
- "[CLS]": 104,
3
- "[MASK]": 103,
4
- "[PAD]": 0,
5
- "[SEP]": 105,
6
- "[UNK]": 100
7
  }
 
1
  {
2
+ "<pad>": 0,
3
+ "<unk>": 1,
4
+ "[CLS]": 2,
5
+ "[MASK]": 4,
6
+ "[SEP]": 3
7
  }
config.json CHANGED
@@ -1,13 +1,17 @@
1
  {
2
- "_name_or_path": "google/muril-base-cased",
3
  "architectures": [
4
- "BertForTokenClassification"
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": "DATE",
@@ -20,6 +24,7 @@
20
  "7": "TIME"
21
  },
22
  "initializer_range": 0.02,
 
23
  "intermediate_size": 3072,
24
  "label2id": {
25
  "DATE": 0,
@@ -33,14 +38,16 @@
33
  },
34
  "layer_norm_eps": 1e-12,
35
  "max_position_embeddings": 512,
36
- "model_type": "bert",
 
37
  "num_attention_heads": 12,
 
38
  "num_hidden_layers": 12,
 
39
  "pad_token_id": 0,
40
  "position_embedding_type": "absolute",
41
  "torch_dtype": "float32",
42
  "transformers_version": "4.34.0",
43
  "type_vocab_size": 2,
44
- "use_cache": true,
45
- "vocab_size": 197285
46
  }
 
1
  {
2
+ "_name_or_path": "ai4bharat/indic-bert",
3
  "architectures": [
4
+ "AlbertForTokenClassification"
5
  ],
6
+ "attention_probs_dropout_prob": 0,
7
+ "bos_token_id": 2,
8
+ "classifier_dropout_prob": 0.1,
9
+ "down_scale_factor": 1,
10
+ "embedding_size": 128,
11
+ "eos_token_id": 3,
12
+ "gap_size": 0,
13
  "hidden_act": "gelu",
14
+ "hidden_dropout_prob": 0,
15
  "hidden_size": 768,
16
  "id2label": {
17
  "0": "DATE",
 
24
  "7": "TIME"
25
  },
26
  "initializer_range": 0.02,
27
+ "inner_group_num": 1,
28
  "intermediate_size": 3072,
29
  "label2id": {
30
  "DATE": 0,
 
38
  },
39
  "layer_norm_eps": 1e-12,
40
  "max_position_embeddings": 512,
41
+ "model_type": "albert",
42
+ "net_structure_type": 0,
43
  "num_attention_heads": 12,
44
+ "num_hidden_groups": 1,
45
  "num_hidden_layers": 12,
46
+ "num_memory_blocks": 0,
47
  "pad_token_id": 0,
48
  "position_embedding_type": "absolute",
49
  "torch_dtype": "float32",
50
  "transformers_version": "4.34.0",
51
  "type_vocab_size": 2,
52
+ "vocab_size": 200000
 
53
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:510d515083e20c27fab97aa5840244414eb7f4c702921befe072adacf3ac7d97
3
- size 947954857
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17c21061a32b3ca91d1bcfcbb0933ca1142582ed41d86f8575f3830aeeaf7dc3
3
+ size 131445244
special_tokens_map.json CHANGED
@@ -1,7 +1,9 @@
1
  {
 
2
  "cls_token": "[CLS]",
 
3
  "mask_token": "[MASK]",
4
- "pad_token": "[PAD]",
5
  "sep_token": "[SEP]",
6
- "unk_token": "[UNK]"
7
  }
 
1
  {
2
+ "bos_token": "[CLS]",
3
  "cls_token": "[CLS]",
4
+ "eos_token": "[SEP]",
5
  "mask_token": "[MASK]",
6
+ "pad_token": "<pad>",
7
  "sep_token": "[SEP]",
8
+ "unk_token": "<unk>"
9
  }
spiece.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a1173c2b6e144a02c001e289a05b5dbefddf247c50d4dcf42633158b2968fcb
3
+ size 5646064
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,40 +1,40 @@
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
- "100": {
12
- "content": "[UNK]",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
- "103": {
20
- "content": "[MASK]",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
- "104": {
28
- "content": "[CLS]",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
- "105": {
36
- "content": "[SEP]",
37
- "lstrip": false,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
@@ -42,18 +42,18 @@
42
  }
43
  },
44
  "additional_special_tokens": [],
 
45
  "clean_up_tokenization_spaces": true,
46
  "cls_token": "[CLS]",
47
- "do_basic_tokenize": true,
48
- "do_lower_case": false,
49
- "lowercase": false,
50
  "mask_token": "[MASK]",
51
- "model_max_length": 512,
52
- "never_split": null,
53
- "pad_token": "[PAD]",
54
  "sep_token": "[SEP]",
55
- "strip_accents": false,
56
- "tokenize_chinese_chars": true,
57
- "tokenizer_class": "BertTokenizer",
58
- "unk_token": "[UNK]"
59
  }
 
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": "[CLS]",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
+ "3": {
28
+ "content": "[SEP]",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
+ "4": {
36
+ "content": "[MASK]",
37
+ "lstrip": true,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
 
42
  }
43
  },
44
  "additional_special_tokens": [],
45
+ "bos_token": "[CLS]",
46
  "clean_up_tokenization_spaces": true,
47
  "cls_token": "[CLS]",
48
+ "do_lower_case": true,
49
+ "eos_token": "[SEP]",
50
+ "keep_accents": false,
51
  "mask_token": "[MASK]",
52
+ "model_max_length": 1000000000000000019884624838656,
53
+ "pad_token": "<pad>",
54
+ "remove_space": true,
55
  "sep_token": "[SEP]",
56
+ "sp_model_kwargs": {},
57
+ "tokenizer_class": "AlbertTokenizer",
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:f0b2bc1a382b17cfa5762bd14617e30ffd3769ee00bdd53cbe1ca628952859e4
3
  size 4091
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:226af777b432ce66c1fbf8c67f0134691b7aeb4d6a07914804bdef07e8d59bdf
3
  size 4091