This model is a fine-tuned version of
microsoft/deberta-v3-base designed to detect AI-generated text.
This highlights the necessity of domain-specific training for AI detection.
Detectors trained on legacy models (2021 era) cannot reliably detect modern SOTA models (2024 era) due to the closing gap in perplexity and burstiness.
1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="vraj33/ai-text-detector-deberta")
4text = "The quick brown fox..."
5result = classifier(text)
6print(result)