File size: 987 Bytes
4e33256 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
---
title: ToxiCheck
emoji: 🧪
colorFrom: indigo
colorTo: pink
sdk: gradio
sdk_version: 4.25.0
app_file: main.py
pinned: false
---
# 🧪 ToxiCheck — Détection de commentaires toxiques en français
ToxiCheck est une interface Gradio qui permet de détecter automatiquement la toxicité d’un texte en français à l’aide d’un modèle **CamemBERT** fine-tuné.
Ce projet intègre :
- Une interface utilisateur interactive (via Gradio),
- Deux onglets : `Documentation` & `Inférence`,
- Un pipeline NLP complet : tokenizer, prédiction, interprétation.
---
## 🔗 Modèle utilisé
Modèle hébergé sur Hugging Face :
👉 [ymokay/toxicheck-camembert](https://huggingface.co/ymokay/toxicheck-camembert)
---
## ⚙️ Technologies
- 🧠 Transformers (CamemBERT)
- 🖼️ Gradio
- 🧪 PyTorch
- 🐍 Python 3.10
---
## 🛠️ Lancement local
```bash
git clone https://github.com/Tbruand/toxicheck.git
cd toxicheck
pip install -r requirements.txt
python main.py |