This is a fully fine-tuned ModernBERT-base classifier for distinguishing human-written and AI-generated text. It was trained on
rasbt/human-vs-ai-50k
. Human-written text has label 0 and AI-generated text has label 1.
The model supports sequences up to 8,192 tokens. Temperature scaling is applied during inference. The recorded best validation accuracy was 99.71%.
import json
from pathlib import Path
import torch
from transformers import AutoModelForSequenceClassification, AutoTokenizer
model_dir = Path("models/ai-text-detector-modernbert")
metadata = json.loads(
(model_dir / "detector-config.json").read_text(encoding="utf-8")
)
tokenizer = AutoTokenizer.from_pretrained(model_dir)
model = AutoModelForSequenceClassification.from_pretrained(model_dir)
model.eval()
text = "Paste the text to classify here."
inputs = tokenizer(
text,
truncation=True,
max_length=metadata["max_length"],
return_tensors="pt",
)
with torch.inference_mode():
logits = model(**inputs).logits / metadata["temperature"]
probabilities = logits.float().softmax(dim=-1)
ai_index = metadata["label_mapping"]["ai"]
ai_probability = probabilities[0, ai_index].item()
print({"score": round(100 * ai_probability, 4)})
Test-set confusion matrix
detector-config.json
contains the calibration temperature and training metadata. The recommended inference implementation is provided in the
rasbt/ai-detector
repository.
Performance may change for text from generators, domains, languages, and editing workflows not represented in the training set. Short or partly AI-assisted text may also be harder to classify. The score should not be treated as definitive evidence that a person did or did not write a text.
Runs of rasbt ai-text-detector-modernbert on huggingface.co
1.6K
Total runs
17
24-hour runs
118
3-day runs
366
7-day runs
1.6K
30-day runs
More Information About ai-text-detector-modernbert huggingface.co Model
More ai-text-detector-modernbert license Visit here:
ai-text-detector-modernbert huggingface.co is an AI model on huggingface.co that provides ai-text-detector-modernbert's model effect (), which can be used instantly with this rasbt ai-text-detector-modernbert model. huggingface.co supports a free trial of the ai-text-detector-modernbert model, and also provides paid use of the ai-text-detector-modernbert. Support call ai-text-detector-modernbert model through api, including Node.js, Python, http.
ai-text-detector-modernbert huggingface.co is an online trial and call api platform, which integrates ai-text-detector-modernbert's modeling effects, including api services, and provides a free online trial of ai-text-detector-modernbert, you can try ai-text-detector-modernbert online for free by clicking the link below.
rasbt ai-text-detector-modernbert online free url in huggingface.co:
ai-text-detector-modernbert is an open source model from GitHub that offers a free installation service, and any user can find ai-text-detector-modernbert on GitHub to install. At the same time, huggingface.co provides the effect of ai-text-detector-modernbert install, users can directly use ai-text-detector-modernbert installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
ai-text-detector-modernbert install url in huggingface.co: