Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,6 @@ from transformers import pipeline
|
|
4 |
classifier = pipeline("zero-shot-classification",
|
5 |
model="morit/french_xlm_xnli")
|
6 |
text = st.text_input('Entrer le texte a analyser')
|
7 |
-
|
8 |
-
hypothesis_template = "Cet example
|
9 |
st.write(classifier(text, candidate_labels, hypothesis_template=hypothesis_template))
|
|
|
4 |
classifier = pipeline("zero-shot-classification",
|
5 |
model="morit/french_xlm_xnli")
|
6 |
text = st.text_input('Entrer le texte a analyser')
|
7 |
+
candidate_labels = ["commentaire positive", "commentaire negative"]
|
8 |
+
hypothesis_template = "Cet example estb un {}"
|
9 |
st.write(classifier(text, candidate_labels, hypothesis_template=hypothesis_template))
|