Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ from transformers import pipeline
|
|
6 |
df = pd.read_csv("Comments.csv")
|
7 |
|
8 |
#recup des comments en liste
|
9 |
-
comments = df["
|
10 |
|
11 |
# Create a selectbox to choose a comment
|
12 |
selected_comment = st.selectbox("Select a comment", comments)
|
|
|
6 |
df = pd.read_csv("Comments.csv")
|
7 |
|
8 |
#recup des comments en liste
|
9 |
+
comments = df["Comment"].tolist()
|
10 |
|
11 |
# Create a selectbox to choose a comment
|
12 |
selected_comment = st.selectbox("Select a comment", comments)
|