mirfan899 commited on
Commit
b7b13f5
1 Parent(s): f5fb27c

End of training

Browse files
Files changed (7) hide show
  1. README.md +13 -13
  2. config.json +8 -3
  3. pytorch_model.bin +2 -2
  4. tokenizer.json +0 -0
  5. tokenizer_config.json +1 -4
  6. training_args.bin +1 -1
  7. vocab.txt +0 -0
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
  # 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
 
@@ -43,7 +43,7 @@ More information needed
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
@@ -53,11 +53,11 @@ 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
- | 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
 
1
  ---
2
  license: apache-2.0
3
+ base_model: bert-base-multilingual-cased
4
  tags:
5
  - generated_from_trainer
6
  metrics:
 
18
 
19
  # hindi-muril-ner
20
 
21
+ This model is a fine-tuned version of [bert-base-multilingual-cased](https://huggingface.co/bert-base-multilingual-cased) on an unknown dataset.
22
  It achieves the following results on the evaluation set:
23
+ - Loss: 0.0050
24
+ - Precision: 0.9870
25
+ - Recall: 0.9892
26
+ - F1: 0.9881
27
+ - Accuracy: 0.9989
28
 
29
  ## Model description
30
 
 
43
  ### Training hyperparameters
44
 
45
  The following hyperparameters were used during training:
46
+ - learning_rate: 0.0001
47
  - train_batch_size: 8
48
  - eval_batch_size: 8
49
  - seed: 42
 
53
 
54
  ### Training results
55
 
56
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
57
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
58
+ | 0.1968 | 1.0 | 882 | 0.0436 | 0.8199 | 0.8751 | 0.8466 | 0.9884 |
59
+ | 0.0212 | 2.0 | 1764 | 0.0106 | 0.9695 | 0.9704 | 0.9700 | 0.9975 |
60
+ | 0.0038 | 3.0 | 2646 | 0.0050 | 0.9870 | 0.9892 | 0.9881 | 0.9989 |
61
 
62
 
63
  ### Framework versions
config.json CHANGED
@@ -1,11 +1,11 @@
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,
@@ -45,10 +45,15 @@
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
  }
 
1
  {
2
+ "_name_or_path": "bert-base-multilingual-cased",
3
  "architectures": [
4
  "BertForTokenClassification"
5
  ],
6
  "attention_probs_dropout_prob": 0.1,
7
  "classifier_dropout": null,
8
+ "directionality": "bidi",
9
  "hidden_act": "gelu",
10
  "hidden_dropout_prob": 0.1,
11
  "hidden_size": 768,
 
45
  "num_attention_heads": 12,
46
  "num_hidden_layers": 12,
47
  "pad_token_id": 0,
48
+ "pooler_fc_size": 768,
49
+ "pooler_num_attention_heads": 12,
50
+ "pooler_num_fc_layers": 3,
51
+ "pooler_size_per_head": 128,
52
+ "pooler_type": "first_token_transform",
53
  "position_embedding_type": "absolute",
54
  "torch_dtype": "float32",
55
  "transformers_version": "4.33.0",
56
  "type_vocab_size": 2,
57
  "use_cache": true,
58
+ "vocab_size": 119547
59
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:500151558271b0bb02600903c071d5b7fdfd218ae8f0ba366f1e887372f7efdd
3
- size 947967145
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0b8ec08cfe250ae84a7de5575efdb15357a30588b407c1c341e75dbf61268c6
3
+ size 709156009
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,15 +1,12 @@
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]"
 
1
  {
2
  "clean_up_tokenization_spaces": true,
3
  "cls_token": "[CLS]",
 
4
  "do_lower_case": false,
 
5
  "mask_token": "[MASK]",
6
  "model_max_length": 512,
 
7
  "pad_token": "[PAD]",
8
  "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
  "tokenize_chinese_chars": true,
11
  "tokenizer_class": "BertTokenizer",
12
  "unk_token": "[UNK]"
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b8ff6d35c147c6178ac7bcc5dc6e4f42d026b45bee25a92b34b5a799ad12fde5
3
  size 4027
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a02899ca77a62009a9ab6091ed608c6798f2e943d8d5f2f72dc3bddbf244566
3
  size 4027
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff