mirfan899 commited on
Commit
8674879
1 Parent(s): 91dc1b4

End of training

Browse files
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: google/muril-base-cased
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - precision
8
+ - recall
9
+ - f1
10
+ - accuracy
11
+ model-index:
12
+ - name: hindi-muril-ner
13
+ results: []
14
+ ---
15
+
16
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
17
+ should probably proofread and complete it, then remove this comment. -->
18
+
19
+ # hindi-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: 0.0006
24
+ - Precision: 0.9963
25
+ - Recall: 0.9984
26
+ - F1: 0.9973
27
+ - Accuracy: 0.9997
28
+
29
+ ## Model description
30
+
31
+ More information needed
32
+
33
+ ## Intended uses & limitations
34
+
35
+ More information needed
36
+
37
+ ## Training and evaluation data
38
+
39
+ More information needed
40
+
41
+ ## Training procedure
42
+
43
+ ### Training hyperparameters
44
+
45
+ The following hyperparameters were used during training:
46
+ - learning_rate: 2e-05
47
+ - train_batch_size: 8
48
+ - eval_batch_size: 8
49
+ - seed: 42
50
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
51
+ - lr_scheduler_type: linear
52
+ - num_epochs: 3
53
+
54
+ ### Training results
55
+
56
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
57
+ |:-------------:|:-----:|:------:|:---------------:|:---------:|:------:|:------:|:--------:|
58
+ | 0.0065 | 1.0 | 47891 | 0.0044 | 0.9866 | 0.9900 | 0.9883 | 0.9988 |
59
+ | 0.0016 | 2.0 | 95782 | 0.0011 | 0.9952 | 0.9975 | 0.9963 | 0.9996 |
60
+ | 0.0008 | 3.0 | 143673 | 0.0006 | 0.9963 | 0.9984 | 0.9973 | 0.9997 |
61
+
62
+
63
+ ### Framework versions
64
+
65
+ - Transformers 4.33.0
66
+ - Pytorch 2.0.0
67
+ - Datasets 2.14.5
68
+ - Tokenizers 0.13.3
config.json ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "LOCATION",
14
+ "1": "BRAND",
15
+ "2": "TITLE_OBJECT",
16
+ "3": "PERSON",
17
+ "4": "DESIGNATION",
18
+ "5": "ORGANIZATION",
19
+ "6": "ABBREVIATION",
20
+ "7": "TIME",
21
+ "8": "NUMBER",
22
+ "9": "MEASURE",
23
+ "10": "TERMS",
24
+ "11": "O"
25
+ },
26
+ "initializer_range": 0.02,
27
+ "intermediate_size": 3072,
28
+ "label2id": {
29
+ "ABBREVIATION": 6,
30
+ "BRAND": 1,
31
+ "DESIGNATION": 4,
32
+ "LOCATION": 0,
33
+ "MEASURE": 9,
34
+ "NUMBER": 8,
35
+ "O": 11,
36
+ "ORGANIZATION": 5,
37
+ "PERSON": 3,
38
+ "TERMS": 10,
39
+ "TIME": 7,
40
+ "TITLE_OBJECT": 2
41
+ },
42
+ "layer_norm_eps": 1e-12,
43
+ "max_position_embeddings": 512,
44
+ "model_type": "bert",
45
+ "num_attention_heads": 12,
46
+ "num_hidden_layers": 12,
47
+ "pad_token_id": 0,
48
+ "position_embedding_type": "absolute",
49
+ "torch_dtype": "float32",
50
+ "transformers_version": "4.33.0",
51
+ "type_vocab_size": 2,
52
+ "use_cache": true,
53
+ "vocab_size": 197285
54
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:500151558271b0bb02600903c071d5b7fdfd218ae8f0ba366f1e887372f7efdd
3
+ size 947967145
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,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_basic_tokenize": true,
5
+ "do_lower_case": false,
6
+ "lowercase": false,
7
+ "mask_token": "[MASK]",
8
+ "model_max_length": 512,
9
+ "never_split": null,
10
+ "pad_token": "[PAD]",
11
+ "sep_token": "[SEP]",
12
+ "strip_accents": false,
13
+ "tokenize_chinese_chars": true,
14
+ "tokenizer_class": "BertTokenizer",
15
+ "unk_token": "[UNK]"
16
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8ff6d35c147c6178ac7bcc5dc6e4f42d026b45bee25a92b34b5a799ad12fde5
3
+ size 4027
vocab.txt ADDED
The diff for this file is too large to render. See raw diff