Kayvane commited on
Commit
7be5890
1 Parent(s): 1f63283

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +93 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - consumer-finance-complaints
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ - recall
11
+ - precision
12
+ model-index:
13
+ - name: distilbert-complaints-wandb
14
+ results:
15
+ - task:
16
+ name: Text Classification
17
+ type: text-classification
18
+ dataset:
19
+ name: consumer-finance-complaints
20
+ type: consumer-finance-complaints
21
+ args: default
22
+ metrics:
23
+ - name: Accuracy
24
+ type: accuracy
25
+ value: 0.868877906608376
26
+ - name: F1
27
+ type: f1
28
+ value: 0.8630522401242867
29
+ - name: Recall
30
+ type: recall
31
+ value: 0.868877906608376
32
+ - name: Precision
33
+ type: precision
34
+ value: 0.8616053523512515
35
+ ---
36
+
37
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
38
+ should probably proofread and complete it, then remove this comment. -->
39
+
40
+ # distilbert-complaints-wandb
41
+
42
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the consumer-finance-complaints dataset.
43
+ It achieves the following results on the evaluation set:
44
+ - Loss: 0.4448
45
+ - Accuracy: 0.8689
46
+ - F1: 0.8631
47
+ - Recall: 0.8689
48
+ - Precision: 0.8616
49
+
50
+ ## Model description
51
+
52
+ More information needed
53
+
54
+ ## Intended uses & limitations
55
+
56
+ More information needed
57
+
58
+ ## Training and evaluation data
59
+
60
+ More information needed
61
+
62
+ ## Training procedure
63
+
64
+ ### Training hyperparameters
65
+
66
+ The following hyperparameters were used during training:
67
+ - learning_rate: 5e-05
68
+ - train_batch_size: 32
69
+ - eval_batch_size: 32
70
+ - seed: 42
71
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
72
+ - lr_scheduler_type: linear
73
+ - lr_scheduler_warmup_steps: 500
74
+ - num_epochs: 3
75
+ - mixed_precision_training: Native AMP
76
+
77
+ ### Training results
78
+
79
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Recall | Precision |
80
+ |:-------------:|:-----:|:-----:|:---------------:|:--------:|:------:|:------:|:---------:|
81
+ | 0.571 | 0.51 | 2000 | 0.5150 | 0.8469 | 0.8349 | 0.8469 | 0.8249 |
82
+ | 0.4765 | 1.01 | 4000 | 0.4676 | 0.8561 | 0.8451 | 0.8561 | 0.8376 |
83
+ | 0.3376 | 1.52 | 6000 | 0.4560 | 0.8609 | 0.8546 | 0.8609 | 0.8547 |
84
+ | 0.268 | 2.03 | 8000 | 0.4399 | 0.8684 | 0.8611 | 0.8684 | 0.8607 |
85
+ | 0.2654 | 2.53 | 10000 | 0.4448 | 0.8689 | 0.8631 | 0.8689 | 0.8616 |
86
+
87
+
88
+ ### Framework versions
89
+
90
+ - Transformers 4.20.1
91
+ - Pytorch 1.11.0+cu113
92
+ - Datasets 2.3.2
93
+ - Tokenizers 0.12.1