trentmkelly/gpt-slop-2
Viewer • Updated • 281k • 23
How to use trentmkelly/slop-detector-mini-2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="trentmkelly/slop-detector-mini-2") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("trentmkelly/slop-detector-mini-2")
model = AutoModelForSequenceClassification.from_pretrained("trentmkelly/slop-detector-mini-2")Binary text classification model for detecting AI-generated content in Reddit comments. Optimized for client-side inference via Transformers.js in browser extensions.
Repository: reddit-llm-comment-detector
| Metric | Value |
|---|---|
| Loss | 0.04163680970668793 |
| F1 Score | 0.9911573288058857 |
| Precision | 0.985579628587507 |
| Recall | 0.9967985202048947 |
| AUC | 0.9997115393414552 |
| Accuracy | 0.991107000569152 |
Used in browser extensions for real-time detection of AI-generated Reddit comments. Comments with >50% confidence scores are flagged for users.
Base model
TaylorAI/gte-tiny