junmeng-sf commited on
Commit
183b979
·
verified ·
1 Parent(s): 15516e1

End of training

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ license: apache-2.0
4
+ base_model: distilbert-base-uncased
5
+ tags:
6
+ - base_model:adapter:distilbert-base-uncased
7
+ - lora
8
+ - transformers
9
+ metrics:
10
+ - accuracy
11
+ - precision
12
+ - recall
13
+ - f1
14
+ model-index:
15
+ - name: distilbert-base-category-classifier
16
+ results: []
17
+ ---
18
+
19
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
20
+ should probably proofread and complete it, then remove this comment. -->
21
+
22
+ # distilbert-base-category-classifier
23
+
24
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset.
25
+ It achieves the following results on the evaluation set:
26
+ - Loss: 0.1482
27
+ - Accuracy: 0.9518
28
+ - Precision: 0.9514
29
+ - Recall: 0.9518
30
+ - F1: 0.9515
31
+
32
+ ## Model description
33
+
34
+ More information needed
35
+
36
+ ## Intended uses & limitations
37
+
38
+ More information needed
39
+
40
+ ## Training and evaluation data
41
+
42
+ More information needed
43
+
44
+ ## Training procedure
45
+
46
+ ### Training hyperparameters
47
+
48
+ The following hyperparameters were used during training:
49
+ - learning_rate: 2e-05
50
+ - train_batch_size: 16
51
+ - eval_batch_size: 16
52
+ - seed: 42
53
+ - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
54
+ - lr_scheduler_type: linear
55
+ - num_epochs: 3
56
+
57
+ ### Training results
58
+
59
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
60
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:---------:|:------:|:------:|
61
+ | 0.5032 | 1.0 | 1342 | 0.2337 | 0.9277 | 0.9265 | 0.9277 | 0.9267 |
62
+ | 0.1954 | 2.0 | 2684 | 0.1623 | 0.9490 | 0.9487 | 0.9490 | 0.9487 |
63
+ | 0.154 | 3.0 | 4026 | 0.1482 | 0.9518 | 0.9514 | 0.9518 | 0.9515 |
64
+
65
+
66
+ ### Framework versions
67
+
68
+ - PEFT 0.17.1
69
+ - Transformers 4.55.4
70
+ - Pytorch 2.8.0+cu126
71
+ - Datasets 4.0.0
72
+ - Tokenizers 0.21.4