Ninjateen commited on
Commit
8040db3
1 Parent(s): 9584987

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - rotten_tomatoes
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ - precision
11
+ - recall
12
+ model-index:
13
+ - name: my_distilbert_model
14
+ results:
15
+ - task:
16
+ name: Text Classification
17
+ type: text-classification
18
+ dataset:
19
+ name: rotten_tomatoes
20
+ type: rotten_tomatoes
21
+ config: default
22
+ split: test
23
+ args: default
24
+ metrics:
25
+ - name: Accuracy
26
+ type: accuracy
27
+ value: 0.8405253283302064
28
+ - name: F1
29
+ type: f1
30
+ value: 0.8405247669736138
31
+ - name: Precision
32
+ type: precision
33
+ value: 0.8405301230265589
34
+ - name: Recall
35
+ type: recall
36
+ value: 0.8405253283302063
37
+ ---
38
+
39
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
40
+ should probably proofread and complete it, then remove this comment. -->
41
+
42
+ # my_distilbert_model
43
+
44
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the rotten_tomatoes dataset.
45
+ It achieves the following results on the evaluation set:
46
+ - Loss: 0.5525
47
+ - Accuracy: 0.8405
48
+ - F1: 0.8405
49
+ - Precision: 0.8405
50
+ - Recall: 0.8405
51
+
52
+ ## Model description
53
+
54
+ More information needed
55
+
56
+ ## Intended uses & limitations
57
+
58
+ More information needed
59
+
60
+ ## Training and evaluation data
61
+
62
+ More information needed
63
+
64
+ ## Training procedure
65
+
66
+ ### Training hyperparameters
67
+
68
+ The following hyperparameters were used during training:
69
+ - learning_rate: 2e-05
70
+ - train_batch_size: 16
71
+ - eval_batch_size: 16
72
+ - seed: 42
73
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
74
+ - lr_scheduler_type: linear
75
+ - num_epochs: 3
76
+
77
+ ### Training results
78
+
79
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
80
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|:------:|
81
+ | 0.4173 | 1.0 | 534 | 0.3898 | 0.8433 | 0.8433 | 0.8433 | 0.8433 |
82
+ | 0.2526 | 2.0 | 1068 | 0.4618 | 0.8396 | 0.8395 | 0.8402 | 0.8396 |
83
+ | 0.1541 | 3.0 | 1602 | 0.5525 | 0.8405 | 0.8405 | 0.8405 | 0.8405 |
84
+
85
+
86
+ ### Framework versions
87
+
88
+ - Transformers 4.27.2
89
+ - Pytorch 2.0.1
90
+ - Datasets 2.11.0
91
+ - Tokenizers 0.13.2