dzinampini commited on
Commit
f21d8dc
·
verified ·
1 Parent(s): 3fd9c2a

🍻 cheers

Browse files
Files changed (1) hide show
  1. README.md +70 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: distilbert-base-uncased
5
+ tags:
6
+ - text-classification
7
+ - generated_from_trainer
8
+ metrics:
9
+ - precision
10
+ - recall
11
+ - f1
12
+ model-index:
13
+ - name: phishing-links-detection-using-transformers
14
+ results: []
15
+ ---
16
+
17
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
18
+ should probably proofread and complete it, then remove this comment. -->
19
+
20
+ # phishing-links-detection-using-transformers
21
+
22
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the Razvan27/remla_phishing_url dataset.
23
+ It achieves the following results on the evaluation set:
24
+ - Loss: 0.1545
25
+ - Precision: 0.9757
26
+ - Recall: 0.9673
27
+ - F1: 0.9715
28
+
29
+ ## Model description
30
+
31
+ More information needed
32
+
33
+ ## Intended uses & limitations
34
+
35
+ More information needed
36
+
37
+ ## Training and evaluation data
38
+
39
+ More information needed
40
+
41
+ ## Training procedure
42
+
43
+ ### Training hyperparameters
44
+
45
+ The following hyperparameters were used during training:
46
+ - learning_rate: 2e-05
47
+ - train_batch_size: 32
48
+ - eval_batch_size: 32
49
+ - seed: 42
50
+ - distributed_type: tpu
51
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
52
+ - lr_scheduler_type: linear
53
+ - num_epochs: 5
54
+
55
+ ### Training results
56
+
57
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 |
58
+ |:-------------:|:-----:|:-----:|:---------------:|:---------:|:------:|:------:|
59
+ | 0.1044 | 1.0 | 3269 | 0.0874 | 0.9688 | 0.9583 | 0.9635 |
60
+ | 0.0709 | 2.0 | 6538 | 0.0938 | 0.9603 | 0.9736 | 0.9669 |
61
+ | 0.0224 | 3.0 | 9807 | 0.1064 | 0.9781 | 0.9644 | 0.9712 |
62
+ | 0.0254 | 4.0 | 13076 | 0.1281 | 0.9768 | 0.9653 | 0.9710 |
63
+ | 0.0161 | 5.0 | 16345 | 0.1545 | 0.9757 | 0.9673 | 0.9715 |
64
+
65
+
66
+ ### Framework versions
67
+
68
+ - Transformers 4.51.3
69
+ - Pytorch 2.6.0+cpu
70
+ - Tokenizers 0.21.1