Text Classification
Transformers
Safetensors
English
roberta
ai-text-detection
academic-writing
text-embeddings-inference
Instructions to use avasil02/automated-humanizer-detector with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use avasil02/automated-humanizer-detector with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="avasil02/automated-humanizer-detector")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("avasil02/automated-humanizer-detector") model = AutoModelForSequenceClassification.from_pretrained("avasil02/automated-humanizer-detector") - Notebooks
- Google Colab
- Kaggle
Automated Humanizer β academic AI-text detector
RoBERTa sequence classifier (human vs. AI-generated) fine-tuned on academic
prose. It is the default hf detector backend of the
automated_humanizer
pipeline, where it gates a humanize β detect β validate rewrite loop.
- Architecture:
RobertaForSequenceClassification, 2 labels - Training data: synthetic (AI-draft, human-original) paragraph pairs
built from award-winning pre-2020 arXiv papers (see the project's
training/subsystem)
Honest limitation
This detector was trained on the same data family as the project's humanizer,
so its confidence is an internal, biased estimate β useful as an
optimization signal inside the loop, not as independent evidence of
authorship. The project README recommends an external detector (e.g. GPTZero)
for final sign-off, and test_detectors.py in the repo reproduces why.
Usage
from transformers import pipeline
clf = pipeline("text-classification", model="avasil02/automated-humanizer-detector")
print(clf("Paragraph of academic text..."))
Check the human-class label index once per deployment with the project's
calibrate_detector.py.
- Downloads last month
- 15