PhishMe 💌🕵🏻♂️
Collection
Reasoning LLM for Phishing Detection • 16 items • Updated
How to use piyawudk/PhishMe-R1-8B-GRPO with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="piyawudk/PhishMe-R1-8B-GRPO") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("piyawudk/PhishMe-R1-8B-GRPO")
model = AutoModelForCausalLM.from_pretrained("piyawudk/PhishMe-R1-8B-GRPO")How to use piyawudk/PhishMe-R1-8B-GRPO with Unsloth Studio:
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for piyawudk/PhishMe-R1-8B-GRPO to start chatting
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for piyawudk/PhishMe-R1-8B-GRPO to start chatting
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for piyawudk/PhishMe-R1-8B-GRPO to start chatting
pip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
model_name="piyawudk/PhishMe-R1-8B-GRPO",
max_seq_length=2048,
)The author compares three main techniques for improving phishing detection:
(Read the paper for the full results and analysis.)

After converting to GGUF, you can use this model via Ollama. See this collection for Ollama makefile and run!
Note: this model was fine-tuned using the Unsloth framework