domenicrosati commited on
Commit
87fc523
1 Parent(s): 3436642

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - text-classification
5
+ - generated_from_trainer
6
+ datasets:
7
+ - paws
8
+ metrics:
9
+ - f1
10
+ - precision
11
+ - recall
12
+ model-index:
13
+ - name: deberta-v3-large-finetuned-paws-paraphrase-detector
14
+ results:
15
+ - task:
16
+ name: Text Classification
17
+ type: text-classification
18
+ dataset:
19
+ name: paws
20
+ type: paws
21
+ args: labeled_final
22
+ metrics:
23
+ - name: F1
24
+ type: f1
25
+ value: 0.9426698284279537
26
+ - name: Precision
27
+ type: precision
28
+ value: 0.9300853289292595
29
+ - name: Recall
30
+ type: recall
31
+ value: 0.9555995475113123
32
+ ---
33
+
34
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
35
+ should probably proofread and complete it, then remove this comment. -->
36
+
37
+ # deberta-v3-large-finetuned-paws-paraphrase-detector
38
+
39
+ This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the paws dataset.
40
+ It achieves the following results on the evaluation set:
41
+ - Loss: 0.3046
42
+ - F1: 0.9427
43
+ - Precision: 0.9301
44
+ - Recall: 0.9556
45
+
46
+ ## Model description
47
+
48
+ More information needed
49
+
50
+ ## Intended uses & limitations
51
+
52
+ More information needed
53
+
54
+ ## Training and evaluation data
55
+
56
+ More information needed
57
+
58
+ ## Training procedure
59
+
60
+ ### Training hyperparameters
61
+
62
+ The following hyperparameters were used during training:
63
+ - learning_rate: 6e-06
64
+ - train_batch_size: 8
65
+ - eval_batch_size: 8
66
+ - seed: 42
67
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
68
+ - lr_scheduler_type: linear
69
+ - lr_scheduler_warmup_steps: 50
70
+ - num_epochs: 3
71
+ - mixed_precision_training: Native AMP
72
+
73
+ ### Training results
74
+
75
+ | Training Loss | Epoch | Step | Validation Loss | F1 | Precision | Recall |
76
+ |:-------------:|:-----:|:-----:|:---------------:|:------:|:---------:|:------:|
77
+ | 0.1492 | 1.0 | 6176 | 0.1650 | 0.9537 | 0.9385 | 0.9695 |
78
+ | 0.1018 | 2.0 | 12352 | 0.1968 | 0.9544 | 0.9427 | 0.9664 |
79
+ | 0.0482 | 3.0 | 18528 | 0.2419 | 0.9521 | 0.9388 | 0.9658 |
80
+
81
+
82
+ ### Framework versions
83
+
84
+ - Transformers 4.20.1
85
+ - Pytorch 1.11.0
86
+ - Datasets 2.1.0
87
+ - Tokenizers 0.12.1