abdulmatinomotoso
commited on
Commit
·
cd65259
1
Parent(s):
2ffe9da
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# finetuned-distilbert-news-article-catgorization
|
2 |
+
|
3 |
+
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the news_article_categorization dataset.
|
4 |
+
It achieves the following results on the evaluation set:
|
5 |
+
- Loss: 0.01338
|
6 |
+
- F1_score(weighted): 1.0
|
7 |
+
|
8 |
+
## Model description
|
9 |
+
|
10 |
+
More information needed
|
11 |
+
|
12 |
+
## Intended uses & limitations
|
13 |
+
|
14 |
+
More information needed
|
15 |
+
|
16 |
+
## Training and evaluation data
|
17 |
+
|
18 |
+
More information needed
|
19 |
+
|
20 |
+
## Training procedure
|
21 |
+
|
22 |
+
### Training hyperparameters
|
23 |
+
|
24 |
+
The following hyperparameters were used during training:
|
25 |
+
- learning_rate: 1e-5
|
26 |
+
- train_batch_size: 3
|
27 |
+
- eval_batch_size: 3
|
28 |
+
- seed: 17
|
29 |
+
- optimizer: AdamW(lr=1e-5 and epsilon=1e-08)
|
30 |
+
- lr_scheduler_type: linear
|
31 |
+
- lr_scheduler_warmup_steps: 0
|
32 |
+
- num_epochs: 5
|
33 |
+
### Training results
|
34 |
+
| Training Loss | Epoch | Validation Loss | f1 score |
|
35 |
+
|:-------------:|:-----:|:---------------: |:------:|
|
36 |
+
| 0.5176 | 1.0 | 0.0466 | 0.9838 |
|
37 |
+
| 0.0513 | 2.0 | 0.0051 | 1.0000 |
|
38 |
+
| 0.0320 | 3.0 | 0.0032 | 1.0000 |
|
39 |
+
| 0.0229 | 4.0 | 0.0018 | 1.0000 |
|
40 |
+
| 0.0133 | 5.0 | 0.0017 | 1.0000 |
|