j1username commited on
Commit
1c88c78
1 Parent(s): c6e1931

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_trainer
4
+ datasets:
5
+ - ncbi_disease
6
+ metrics:
7
+ - precision
8
+ - recall
9
+ - f1
10
+ - accuracy
11
+ model-index:
12
+ - name: biogpt
13
+ results:
14
+ - task:
15
+ name: Token Classification
16
+ type: token-classification
17
+ dataset:
18
+ name: ncbi_disease
19
+ type: ncbi_disease
20
+ config: ncbi_disease
21
+ split: validation[:-1]
22
+ args: ncbi_disease
23
+ metrics:
24
+ - name: Precision
25
+ type: precision
26
+ value: 0.5170124481327801
27
+ - name: Recall
28
+ type: recall
29
+ value: 0.6013513513513513
30
+ - name: F1
31
+ type: f1
32
+ value: 0.5560017849174477
33
+ - name: Accuracy
34
+ type: accuracy
35
+ value: 0.9555546552143263
36
+ ---
37
+
38
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
39
+ should probably proofread and complete it, then remove this comment. -->
40
+
41
+ # biogpt
42
+
43
+ This model was trained from scratch on the ncbi_disease dataset.
44
+ It achieves the following results on the evaluation set:
45
+ - Loss: 0.1599
46
+ - Precision: 0.5170
47
+ - Recall: 0.6014
48
+ - F1: 0.5560
49
+ - Accuracy: 0.9556
50
+
51
+ ## Model description
52
+
53
+ More information needed
54
+
55
+ ## Intended uses & limitations
56
+
57
+ More information needed
58
+
59
+ ## Training and evaluation data
60
+
61
+ More information needed
62
+
63
+ ## Training procedure
64
+
65
+ ### Training hyperparameters
66
+
67
+ The following hyperparameters were used during training:
68
+ - learning_rate: 0.0001
69
+ - train_batch_size: 16
70
+ - eval_batch_size: 16
71
+ - seed: 42
72
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
73
+ - lr_scheduler_type: linear
74
+ - num_epochs: 3
75
+
76
+ ### Training results
77
+
78
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
79
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
80
+ | No log | 1.0 | 340 | 0.1765 | 0.3914 | 0.5946 | 0.4720 | 0.9425 |
81
+ | 0.2426 | 2.0 | 680 | 0.1538 | 0.4769 | 0.6091 | 0.5350 | 0.9514 |
82
+ | 0.0881 | 3.0 | 1020 | 0.1599 | 0.5170 | 0.6014 | 0.5560 | 0.9556 |
83
+
84
+
85
+ ### Framework versions
86
+
87
+ - Transformers 4.28.1
88
+ - Pytorch 2.0.0+cu118
89
+ - Datasets 2.11.0
90
+ - Tokenizers 0.13.3