Tbruand
commited on
Commit
·
fb6559c
1
Parent(s):
88ca48d
feat(interface): ajoute l’option fine-tuned au sélecteur de modèle
Browse files- app/interface.py +1 -1
app/interface.py
CHANGED
|
@@ -6,7 +6,7 @@ def create_interface():
|
|
| 6 |
fn=predict,
|
| 7 |
inputs=[
|
| 8 |
gr.Textbox(label="Texte à analyser"),
|
| 9 |
-
gr.Dropdown(choices=["zero-shot", "few-shot"], label="Type de modèle", value="zero-shot")
|
| 10 |
],
|
| 11 |
outputs="markdown",
|
| 12 |
title="🧪 ToxiCheck",
|
|
|
|
| 6 |
fn=predict,
|
| 7 |
inputs=[
|
| 8 |
gr.Textbox(label="Texte à analyser"),
|
| 9 |
+
gr.Dropdown(choices=["zero-shot", "few-shot", "fine-tuned"], label="Type de modèle", value="zero-shot")
|
| 10 |
],
|
| 11 |
outputs="markdown",
|
| 12 |
title="🧪 ToxiCheck",
|