fusingAIandSec commited on
Commit
995d6dd
·
verified ·
1 Parent(s): ae9745a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -14
README.md CHANGED
@@ -16,21 +16,23 @@ should probably proofread and complete it, then remove this comment. -->
16
 
17
  # malicious-url-detector
18
 
19
- This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset.
 
20
 
21
  ## Model description
22
-
23
- More information needed
24
 
25
  ## Intended uses & limitations
 
 
 
 
26
 
27
- More information needed
28
-
29
- ## Training and evaluation data
30
-
31
- More information needed
32
-
33
- ## Training procedure
34
 
35
  ### Training hyperparameters
36
 
@@ -43,10 +45,6 @@ The following hyperparameters were used during training:
43
  - lr_scheduler_type: linear
44
  - num_epochs: 3
45
 
46
- ### Training results
47
-
48
-
49
-
50
  ### Framework versions
51
 
52
  - PEFT 0.17.1
 
16
 
17
  # malicious-url-detector
18
 
19
+ malicious-url-detector is a fine-tuned version of distilbert-base-uncased designed to classify URLs as malicious or benign using natural language and pattern-based representations.
20
+ It leverages LoRA (Low-Rank Adaptation) via the PEFT library for lightweight, efficient fine-tuning.
21
 
22
  ## Model description
23
+ This model learns to identify potentially harmful URLs based on patterns commonly found in phishing, malware delivery, and command-and-control links.
24
+ It was fine-tuned on a curated dataset of labeled URLs containing both malicious and safe samples.
25
 
26
  ## Intended uses & limitations
27
+ Intended uses:
28
+ - Integrate into threat detection systems or browser security tools
29
+ - Use for phishing URL classification or malware link filtering
30
+ - Educational and research purposes in cybersecurity automation
31
 
32
+ Limitations:
33
+ - Should not be solely relied upon for production-grade URL blocking
34
+ - May misclassify newly obfuscated or encrypted URLs
35
+ - Requires regular retraining with updated datasets to maintain accuracy
 
 
 
36
 
37
  ### Training hyperparameters
38
 
 
45
  - lr_scheduler_type: linear
46
  - num_epochs: 3
47
 
 
 
 
 
48
  ### Framework versions
49
 
50
  - PEFT 0.17.1