CVR123 commited on
Commit
2651a53
1 Parent(s): fb24008

MuRIL_for_TamilQC

Browse files
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ base_model: l3cube-pune/tamil-bert
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - precision
8
+ - recall
9
+ - accuracy
10
+ model-index:
11
+ - name: Tamil-BERT-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
+ # Tamil-BERT-finetune-Tamil-questions
19
+
20
+ This model is a fine-tuned version of [l3cube-pune/tamil-bert](https://huggingface.co/l3cube-pune/tamil-bert) on an unknown dataset.
21
+ It achieves the following results on the evaluation set:
22
+ - Loss: 0.4260
23
+ - Precision: 0.9180
24
+ - Recall: 0.9178
25
+ - Accuracy: 0.9178
26
+ - F1-score: 0.9178
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.53 | 1.0 | 305 | 1.2013 | 0.8733 | 0.8858 | 0.8858 | 0.8781 |
58
+ | 0.9243 | 2.0 | 610 | 0.6998 | 0.8958 | 0.9078 | 0.9078 | 0.9012 |
59
+ | 0.4855 | 3.0 | 915 | 0.4754 | 0.8848 | 0.8958 | 0.8958 | 0.8889 |
60
+ | 0.2744 | 4.0 | 1220 | 0.4154 | 0.8906 | 0.9038 | 0.9038 | 0.8961 |
61
+ | 0.1852 | 5.0 | 1525 | 0.4133 | 0.8852 | 0.8958 | 0.8958 | 0.8894 |
62
+ | 0.1281 | 6.0 | 1830 | 0.4503 | 0.9030 | 0.8998 | 0.8998 | 0.9004 |
63
+ | 0.0938 | 7.0 | 2135 | 0.4126 | 0.9148 | 0.9138 | 0.9138 | 0.9141 |
64
+ | 0.0699 | 8.0 | 2440 | 0.3966 | 0.9201 | 0.9198 | 0.9198 | 0.9199 |
65
+ | 0.0595 | 9.0 | 2745 | 0.4166 | 0.9183 | 0.9178 | 0.9178 | 0.9180 |
66
+ | 0.0523 | 10.0 | 3050 | 0.4260 | 0.9180 | 0.9178 | 0.9178 | 0.9178 |
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": "l3cube-pune/tamil-bert",
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:1a04fcda78e1b6d35f6c3873de1be3f2eca0b3031108cb3a153c36f3e9ae0ba2
3
+ size 950266896
runs/May14_06-38-30_da90288f2825/events.out.tfevents.1715668729.da90288f2825.157.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0af466f8e1610a24efeb510627e9e9cbe17fdf8762fa5556f2821cea1912255
3
+ size 12207
runs/May14_06-49-25_da90288f2825/events.out.tfevents.1715669372.da90288f2825.157.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21d455a2ba85326eeabfb8dcf2309653cbe9bb89b79284ea8d0d73cb71fa1fb0
3
+ size 12207
special_tokens_map.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "mask_token": {
10
+ "content": "[MASK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "sep_token": {
24
+ "content": "[SEP]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "unk_token": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ }
37
+ }
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": 512,
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:c8c15523cb1248e9666017bbcccd42543a5e2748b120f8eca84c4331b2944270
3
+ size 4984
vocab.txt ADDED
The diff for this file is too large to render. See raw diff