AI vs Human Text Classification
25-02-2026 09:30AM
As artificial intelligence becomes increasingly adept at generating human-like text, distinguishing between AI-generated and human-written content has real-world importance in academic integrity and plagiarism detection, online content moderation, fake news and misinformation detection, authorship attribution, and AI safety and accountability.
Participants must build models that classify sentences as human-written or AI-generated using a labeled dataset.
| Label | Meaning |
|---|---|
| 1 | Human-written |
| 0 | AI-generated |
Using the Human vs AI Sentences dataset from Hugging Face. This dataset includes thousands of short text samples labeled according to whether they were written by a human or generated by an AI.
Balanced classes, short to medium length text, mixed topics, diverse writing styles.
Build a model that predicts 1 (Human-written) or 0 (AI-generated).
In addition to classification accuracy, teams may be evaluated on how well they explain their model decisions.
| Split | Usage |
|---|---|
| Train | 70% |
| Validation | 15% |
| Test | 15% |