Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -20,12 +20,12 @@ df = pd.read_csv("fic.csv", sep=";")
|
|
20 |
comments = df["text"].tolist()
|
21 |
|
22 |
# Afficher l'entête
|
23 |
-
st.header("
|
24 |
|
25 |
# Créer une selectbox pour choisir un commentaire
|
26 |
-
selected_comment = st.selectbox("
|
27 |
# Afficher le commentaire sélectionné dans l'input text
|
28 |
-
text = st.text_area('
|
29 |
|
30 |
# Labels candidats pour la classification
|
31 |
candidate_labels = [1, 0]
|
|
|
20 |
comments = df["text"].tolist()
|
21 |
|
22 |
# Afficher l'entête
|
23 |
+
st.header("Text Analysis")
|
24 |
|
25 |
# Créer une selectbox pour choisir un commentaire
|
26 |
+
selected_comment = st.selectbox("Choose comments or type text", comments)
|
27 |
# Afficher le commentaire sélectionné dans l'input text
|
28 |
+
text = st.text_area('Text zone', value=selected_comment)
|
29 |
|
30 |
# Labels candidats pour la classification
|
31 |
candidate_labels = [1, 0]
|