federicopascual commited on
Commit
7190a27
1 Parent(s): b0573e0

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - imdb
7
+ metrics:
8
+ - accuracy
9
+ - precision
10
+ - recall
11
+ model-index:
12
+ - name: finetuned-sentiment-analysis-model
13
+ results:
14
+ - task:
15
+ name: Text Classification
16
+ type: text-classification
17
+ dataset:
18
+ name: imdb
19
+ type: imdb
20
+ args: plain_text
21
+ metrics:
22
+ - name: Accuracy
23
+ type: accuracy
24
+ value: 0.909
25
+ - name: Precision
26
+ type: precision
27
+ value: 0.8899803536345776
28
+ - name: Recall
29
+ type: recall
30
+ value: 0.9282786885245902
31
+ ---
32
+
33
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
34
+ should probably proofread and complete it, then remove this comment. -->
35
+
36
+ # finetuned-sentiment-analysis-model
37
+
38
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the imdb dataset.
39
+ It achieves the following results on the evaluation set:
40
+ - Loss: 0.2868
41
+ - Accuracy: 0.909
42
+ - Precision: 0.8900
43
+ - Recall: 0.9283
44
+
45
+ ## Model description
46
+
47
+ More information needed
48
+
49
+ ## Intended uses & limitations
50
+
51
+ More information needed
52
+
53
+ ## Training and evaluation data
54
+
55
+ More information needed
56
+
57
+ ## Training procedure
58
+
59
+ ### Training hyperparameters
60
+
61
+ The following hyperparameters were used during training:
62
+ - learning_rate: 2e-05
63
+ - train_batch_size: 16
64
+ - eval_batch_size: 16
65
+ - seed: 42
66
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
67
+ - lr_scheduler_type: linear
68
+ - num_epochs: 2
69
+
70
+ ### Training results
71
+
72
+
73
+
74
+ ### Framework versions
75
+
76
+ - Transformers 4.15.0
77
+ - Pytorch 1.10.0+cu111
78
+ - Datasets 1.17.0
79
+ - Tokenizers 0.10.3