Ostgot commited on
Commit
227b30b
·
verified ·
1 Parent(s): 95375e3

distilbert-base-scoring

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: distilbert/distilbert-base-uncased
4
+ tags:
5
+ - generated_from_trainer
6
+ model-index:
7
+ - name: my_awesome_model
8
+ results: []
9
+ ---
10
+
11
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
12
+ should probably proofread and complete it, then remove this comment. -->
13
+
14
+ # my_awesome_model
15
+
16
+ This model is a fine-tuned version of [distilbert/distilbert-base-uncased](https://huggingface.co/distilbert/distilbert-base-uncased) on the None dataset.
17
+ It achieves the following results on the evaluation set:
18
+ - Loss: 1.2227
19
+ - Quadratic Weighted Kappa: 0.8432
20
+
21
+ ## Model description
22
+
23
+ More information needed
24
+
25
+ ## Intended uses & limitations
26
+
27
+ More information needed
28
+
29
+ ## Training and evaluation data
30
+
31
+ More information needed
32
+
33
+ ## Training procedure
34
+
35
+ ### Training hyperparameters
36
+
37
+ The following hyperparameters were used during training:
38
+ - learning_rate: 2e-05
39
+ - train_batch_size: 32
40
+ - eval_batch_size: 32
41
+ - seed: 42
42
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
43
+ - lr_scheduler_type: linear
44
+ - num_epochs: 7
45
+
46
+ ### Training results
47
+
48
+ | Training Loss | Epoch | Step | Validation Loss | Quadratic Weighted Kappa |
49
+ |:-------------:|:-----:|:----:|:---------------:|:------------------------:|
50
+ | No log | 1.0 | 21 | 1.4531 | 0.7630 |
51
+ | No log | 2.0 | 42 | 1.4259 | 0.7622 |
52
+ | No log | 3.0 | 63 | 1.2936 | 0.8170 |
53
+ | No log | 4.0 | 84 | 1.2508 | 0.8353 |
54
+ | No log | 5.0 | 105 | 1.2348 | 0.8469 |
55
+ | No log | 6.0 | 126 | 1.2241 | 0.8444 |
56
+ | No log | 7.0 | 147 | 1.2227 | 0.8432 |
57
+
58
+
59
+ ### Framework versions
60
+
61
+ - Transformers 4.41.2
62
+ - Pytorch 2.1.2
63
+ - Datasets 2.19.2
64
+ - Tokenizers 0.19.1