calculito commited on
Commit
1c08d48
·
verified ·
1 Parent(s): e110a1f

uodate README

Browse files
Files changed (1) hide show
  1. README.md +54 -3
README.md CHANGED
@@ -1,3 +1,54 @@
1
- ---
2
- license: afl-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ metadata
2
+
3
+ ---
4
+ license: afl-3.0
5
+ ---
6
+
7
+ base_model: albert/albert-base-v2
8
+ tags:
9
+ - generated_from_trainer
10
+ metrics:
11
+ - accuracy
12
+ - f1
13
+ - precision
14
+ - recall
15
+ model-index:
16
+ - name: classify-clickbait-titll
17
+ results: []
18
+ Identify Clickbait Articles
19
+ This model is a fine-tuned version of albert/albert-base-v2 on a synthetic dataset with 65% ISIN titles and 35% ISIN_null titles.
20
+
21
+ ### Model description
22
+ Built to identify ISIN vs ISIN_null titles.
23
+
24
+ ### Intended uses & limitations
25
+ Use it on any title to understand how the model is interpreting the title, whether it is ISIN or ISIN_null.
26
+ Go ahead and try a few of your own.
27
+
28
+
29
+ ### Training and evaluation data
30
+ It achieves the following results on the evaluation set:
31
+ Loss: 0.0173
32
+ Accuracy: 0.9951
33
+ F1: 0.9951
34
+ Precision: 0.9951
35
+ Recall: 0.9951
36
+ Accuracy Label ISIN: 0.95
37
+ Accuracy Label ISIN_null: .095
38
+ Training procedure
39
+ Training hyperparameters
40
+
41
+ ### The following hyperparameters were used during training:
42
+ learning_rate: 2e-05
43
+ train_batch_size: 16
44
+ eval_batch_size: 16
45
+ seed: 42
46
+ optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
47
+ lr_scheduler_type: linear
48
+ lr_scheduler_warmup_steps: 500
49
+ num_epochs: 300
50
+
51
+ ### Framework versions
52
+ Transformers 4.43.3
53
+ Datasets 2.20.0
54
+ Tokenizers 0.19.1