shivani05 commited on
Commit
03ac111
1 Parent(s): 9b15909

End of training

Browse files
Files changed (4) hide show
  1. README.md +69 -0
  2. config.json +60 -0
  3. model.safetensors +3 -0
  4. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: dbmdz/bert-base-turkish-uncased
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - accuracy
8
+ - f1
9
+ - precision
10
+ - recall
11
+ model-index:
12
+ - name: TTC4900Model
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
+ # TTC4900Model
20
+
21
+ This model is a fine-tuned version of [dbmdz/bert-base-turkish-uncased](https://huggingface.co/dbmdz/bert-base-turkish-uncased) on an unknown dataset.
22
+ It achieves the following results on the evaluation set:
23
+ - Loss: 0.2304
24
+ - Accuracy: 0.9341
25
+ - F1: 0.8963
26
+ - Precision: 0.9000
27
+ - Recall: 0.8989
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: 5e-05
47
+ - train_batch_size: 16
48
+ - eval_batch_size: 32
49
+ - seed: 42
50
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
51
+ - lr_scheduler_type: linear
52
+ - lr_scheduler_warmup_steps: 100
53
+ - num_epochs: 3
54
+ - mixed_precision_training: Native AMP
55
+
56
+ ### Training results
57
+
58
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
59
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|:------:|
60
+ | 2.581 | 0.88 | 50 | 2.0974 | 0.4317 | 0.2930 | 0.4400 | 0.3556 |
61
+ | 1.3915 | 1.75 | 100 | 0.6175 | 0.8590 | 0.8144 | 0.8008 | 0.8445 |
62
+ | 0.3808 | 2.63 | 150 | 0.3171 | 0.8767 | 0.8481 | 0.9359 | 0.8620 |
63
+
64
+
65
+ ### Framework versions
66
+
67
+ - Transformers 4.35.2
68
+ - Pytorch 2.1.0+cu118
69
+ - Tokenizers 0.15.0
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "dbmdz/bert-base-turkish-uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "Mapping shared/ network drive",
13
+ "1": "Disk Space Cleanup, Application Performance - Clear browser cache and cookies",
14
+ "2": "Account Unlock/ Password Reset",
15
+ "3": "Distribution List related",
16
+ "4": "Pending reboots for Windows update",
17
+ "5": "Application/ AD Access Issues",
18
+ "6": "Repair O365/ M365.",
19
+ "7": "Onedrive repair / sync issues",
20
+ "8": "Service-Now account related",
21
+ "9": "Disk Space Cleanup",
22
+ "10": "Outlook Related issues",
23
+ "11": "Web browser plugins",
24
+ "12": "Windows login issue",
25
+ "13": "Printer related",
26
+ "14": "Optimize CPU utilization"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 3072,
30
+ "label2id": {
31
+ "Account Unlock/ Password Reset": 2,
32
+ "Application/ AD Access Issues": 5,
33
+ "Disk Space Cleanup": 9,
34
+ "Disk Space Cleanup, Application Performance - Clear browser cache and cookies": 1,
35
+ "Distribution List related": 3,
36
+ "Mapping shared/ network drive": 0,
37
+ "Onedrive repair / sync issues": 7,
38
+ "Optimize CPU utilization": 14,
39
+ "Outlook Related issues": 10,
40
+ "Pending reboots for Windows update": 4,
41
+ "Printer related": 13,
42
+ "Repair O365/ M365.": 6,
43
+ "Service-Now account related": 8,
44
+ "Web browser plugins": 11,
45
+ "Windows login issue": 12
46
+ },
47
+ "layer_norm_eps": 1e-12,
48
+ "max_position_embeddings": 512,
49
+ "model_type": "bert",
50
+ "num_attention_heads": 12,
51
+ "num_hidden_layers": 12,
52
+ "pad_token_id": 0,
53
+ "position_embedding_type": "absolute",
54
+ "problem_type": "single_label_classification",
55
+ "torch_dtype": "float32",
56
+ "transformers_version": "4.35.2",
57
+ "type_vocab_size": 2,
58
+ "use_cache": true,
59
+ "vocab_size": 32000
60
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24f6c64925be072b517e471d1916b809d1733afda26da1c71e4ccb7b27972b59
3
+ size 442539052
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22ae059b530200459088bf2c0d4b333bd9f5022b24c7389133c8ba2ef506a8b8
3
+ size 4536