Instructions to use phishbot/Isitphish with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use phishbot/Isitphish with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="phishbot/Isitphish")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("phishbot/Isitphish") model = AutoModelForSequenceClassification.from_pretrained("phishbot/Isitphish") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,7 +10,7 @@ This model is obtained by finetuning a Pre-Trained RoBERTa using a dataset encom
|
|
| 10 |
Using this model, we can classify malicious prompts that can lead towards creation of phishing websites and phishing emails. -->
|
| 11 |
|
| 12 |
Our model, "Is it Phish?" is designed to identify malicious prompts that can be used to generate phishing websites and emails using popular commercial LLMs like ChatGPT, Bard and Claude.
|
| 13 |
-
This model is obtained by finetuning a Pre-Trained RoBERTa using a dataset encompassing multiple sets of malicious prompts
|
| 14 |
|
| 15 |
Try out "Is it Phish?" using the Inference API. Our model classifies prompts with "Label 1" to signify the identification of a phishing attempt, while "Label 0" denotes a prompt that is considered safe and non-malicious.
|
| 16 |
|
|
@@ -39,4 +39,4 @@ print(model_outputs[0])
|
|
| 39 |
|
| 40 |
### Results
|
| 41 |
|
| 42 |
-
Achieved an accuracy of 96% with an F1-score of 0.96, on test sets distribution
|
|
|
|
| 10 |
Using this model, we can classify malicious prompts that can lead towards creation of phishing websites and phishing emails. -->
|
| 11 |
|
| 12 |
Our model, "Is it Phish?" is designed to identify malicious prompts that can be used to generate phishing websites and emails using popular commercial LLMs like ChatGPT, Bard and Claude.
|
| 13 |
+
This model is obtained by finetuning a Pre-Trained RoBERTa using a dataset encompassing multiple sets of malicious prompts.
|
| 14 |
|
| 15 |
Try out "Is it Phish?" using the Inference API. Our model classifies prompts with "Label 1" to signify the identification of a phishing attempt, while "Label 0" denotes a prompt that is considered safe and non-malicious.
|
| 16 |
|
|
|
|
| 39 |
|
| 40 |
### Results
|
| 41 |
|
| 42 |
+
Achieved an accuracy of 96% with an F1-score of 0.96, on different test sets distribution.
|