kmack/Phishing_urls
Viewer โข Updated โข 709k โข 234 โข 3
How to use kmack/malicious-url-detection with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="kmack/malicious-url-detection") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("kmack/malicious-url-detection")
model = AutoModelForSequenceClassification.from_pretrained("kmack/malicious-url-detection")Using this model, you can detects harmful links created to harm people such as phishing, malware urls. this model Classifies if the urls addresses are malware and benign. Type the domain name of the url address in the text field for classification in API: Like this: "huggingface.com"
This model is a fine-tuned version of distilbert-base-uncased on an kmack/Phishing_urls dataset.