File size: 1,013 Bytes
7f647f0 3bd4e24 7f647f0 | 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 46 47 48 49 50 51 52 53 54 55 56 57 | ---
title: Model Ticket Ti Patrickott
emoji: 😻
colorFrom: green
colorTo: yellow
sdk: gradio
sdk_version: 6.6.0
app_file: app.py
pinned: false
short_description: Bonus du TP1 fine tuning pour un classifieur de ticket TI
---
# BARThez Fine-Tuned for IT Support Ticket Classification
## Description
This model is a fine-tuned version of BARThez for multi-class classification of IT support tickets.
## Base Model
BARThez (French BART model)
## Task
Text classification
## Labels (Priorité)
- Élevée
- Moyenne
- Basse
## Labels (Type de problème)
- Logiciel
- Matériel
- Réseau
- Compte/Mot de passe
- Autre
## Dataset
Internal IT support tickets dataset (French)
## Metrics
- Accuracy: 0.89
- F1-score: 0.87
## Example
```python
from transformers import pipeline
classifier = pipeline(
"text-classification",
model="patrickott1/model-ticket-ti"
)
classifier("Mon VPN ne fonctionne plus")
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|