Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -37,9 +37,10 @@ else:
|
|
37 |
# Calculer les métriques de performance (vous devez ajuster ces lignes selon votre tâche)
|
38 |
if text and candidate_labels:
|
39 |
inputs = df["text"].tolist()
|
40 |
-
true_labels = df["label"]
|
41 |
true_labels=true_labels.replace(1,"commentaire positif")
|
42 |
true_labels=true_labels.replace(0,"commentaire negatif")
|
|
|
43 |
predictions = classifier(inputs, candidate_labels, hypothesis_template=hypothesis_template)
|
44 |
predicted_labels = [result['labels'][0] for result in predictions]
|
45 |
|
|
|
37 |
# Calculer les métriques de performance (vous devez ajuster ces lignes selon votre tâche)
|
38 |
if text and candidate_labels:
|
39 |
inputs = df["text"].tolist()
|
40 |
+
true_labels = df["label"]
|
41 |
true_labels=true_labels.replace(1,"commentaire positif")
|
42 |
true_labels=true_labels.replace(0,"commentaire negatif")
|
43 |
+
true_labels=true_labels.tolist()
|
44 |
predictions = classifier(inputs, candidate_labels, hypothesis_template=hypothesis_template)
|
45 |
predicted_labels = [result['labels'][0] for result in predictions]
|
46 |
|