CVR123 commited on
Commit
f9c9402
1 Parent(s): 665c1df

MuRIL_for_TamilQC

Browse files
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - accuracy
10
+ model-index:
11
+ - name: Muril-base-finetune-Tamil-questions
12
+ results: []
13
+ ---
14
+
15
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
16
+ should probably proofread and complete it, then remove this comment. -->
17
+
18
+ # Muril-base-finetune-Tamil-questions
19
+
20
+ This model is a fine-tuned version of [google/muril-base-cased](https://huggingface.co/google/muril-base-cased) on an unknown dataset.
21
+ It achieves the following results on the evaluation set:
22
+ - Loss: 0.4081
23
+ - Precision: 0.9205
24
+ - Recall: 0.9198
25
+ - Accuracy: 0.9198
26
+ - F1-score: 0.9199
27
+
28
+ ## Model description
29
+
30
+ More information needed
31
+
32
+ ## Intended uses & limitations
33
+
34
+ More information needed
35
+
36
+ ## Training and evaluation data
37
+
38
+ More information needed
39
+
40
+ ## Training procedure
41
+
42
+ ### Training hyperparameters
43
+
44
+ The following hyperparameters were used during training:
45
+ - learning_rate: 2e-05
46
+ - train_batch_size: 16
47
+ - eval_batch_size: 16
48
+ - seed: 42
49
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
50
+ - lr_scheduler_type: linear
51
+ - num_epochs: 10
52
+
53
+ ### Training results
54
+
55
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | Accuracy | F1-score |
56
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:--------:|:--------:|
57
+ | 1.5732 | 1.0 | 305 | 1.2601 | 0.8743 | 0.8858 | 0.8858 | 0.8790 |
58
+ | 0.9937 | 2.0 | 610 | 0.7465 | 0.8988 | 0.9098 | 0.9098 | 0.9033 |
59
+ | 0.5354 | 3.0 | 915 | 0.4557 | 0.9044 | 0.9158 | 0.9158 | 0.9092 |
60
+ | 0.2862 | 4.0 | 1220 | 0.3772 | 0.9198 | 0.9198 | 0.9198 | 0.9193 |
61
+ | 0.1724 | 5.0 | 1525 | 0.3306 | 0.9274 | 0.9259 | 0.9259 | 0.9261 |
62
+ | 0.1235 | 6.0 | 1830 | 0.3763 | 0.9214 | 0.9158 | 0.9158 | 0.9171 |
63
+ | 0.0902 | 7.0 | 2135 | 0.3808 | 0.9229 | 0.9218 | 0.9218 | 0.9219 |
64
+ | 0.0644 | 8.0 | 2440 | 0.3974 | 0.9229 | 0.9218 | 0.9218 | 0.9220 |
65
+ | 0.0575 | 9.0 | 2745 | 0.3930 | 0.9224 | 0.9218 | 0.9218 | 0.9218 |
66
+ | 0.0483 | 10.0 | 3050 | 0.4081 | 0.9205 | 0.9198 | 0.9198 | 0.9199 |
67
+
68
+
69
+ ### Framework versions
70
+
71
+ - Transformers 4.39.3
72
+ - Pytorch 2.1.2
73
+ - Datasets 2.18.0
74
+ - Tokenizers 0.15.2
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/muril-base-cased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
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": "Abbreviation",
14
+ "1": "Description",
15
+ "2": "Entity",
16
+ "3": "Human",
17
+ "4": "Location",
18
+ "5": "Numeric"
19
+ },
20
+ "initializer_range": 0.02,
21
+ "intermediate_size": 3072,
22
+ "label2id": {
23
+ "Abbreviation": 0,
24
+ "Description": 1,
25
+ "Entity": 2,
26
+ "Human": 3,
27
+ "Location": 4,
28
+ "Numeric": 5
29
+ },
30
+ "layer_norm_eps": 1e-12,
31
+ "max_position_embeddings": 512,
32
+ "model_type": "bert",
33
+ "num_attention_heads": 12,
34
+ "num_hidden_layers": 12,
35
+ "pad_token_id": 0,
36
+ "position_embedding_type": "absolute",
37
+ "problem_type": "single_label_classification",
38
+ "torch_dtype": "float32",
39
+ "transformers_version": "4.39.3",
40
+ "type_vocab_size": 2,
41
+ "use_cache": true,
42
+ "vocab_size": 197285
43
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5a2689de4e02ad023a357e79568a9f7cdce74224b41f9b89bc26136cc23ce78
3
+ size 950266896
runs/May14_06-21-12_da90288f2825/events.out.tfevents.1715667704.da90288f2825.34.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:794c4b642431f8d3076fe7b99d71ffd944be48bd33ab3f7d8a916ea40fbd50e6
3
+ size 4933
runs/May14_06-26-43_da90288f2825/events.out.tfevents.1715668012.da90288f2825.157.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea2ca9ec802e195ba51075c2d3a48510f80fdb2ea47338701e848c7d5e09fe0c
3
+ size 12180
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,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": false,
48
+ "lowercase": false,
49
+ "mask_token": "[MASK]",
50
+ "model_max_length": 1000000000000000019884624838656,
51
+ "never_split": null,
52
+ "pad_token": "[PAD]",
53
+ "sep_token": "[SEP]",
54
+ "strip_accents": false,
55
+ "tokenize_chinese_chars": true,
56
+ "tokenizer_class": "BertTokenizer",
57
+ "unk_token": "[UNK]"
58
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d691c3515e10bb49fdb13d9706d383ce667e8f94f627c69688af5b5f134443b7
3
+ size 4984
vocab.txt ADDED
The diff for this file is too large to render. See raw diff