Spaces:
Runtime error
Runtime error
Artur Janik
commited on
Commit
·
84b2bc0
1
Parent(s):
f2662dc
too many examples
Browse files
language_models_project/app.py
CHANGED
@@ -10,7 +10,7 @@ import pandas as pd
|
|
10 |
#sarcasm lol
|
11 |
#I love this product
|
12 |
#"""
|
13 |
-
demo_phrases = pd.read_csv('./train.csv')['comment_text'].head(
|
14 |
# title
|
15 |
st.title("Sentiment Analysis")
|
16 |
|
|
|
10 |
#sarcasm lol
|
11 |
#I love this product
|
12 |
#"""
|
13 |
+
demo_phrases = pd.read_csv('./train.csv')['comment_text'].head(6).astype(str).str.cat(sep='\n')
|
14 |
# title
|
15 |
st.title("Sentiment Analysis")
|
16 |
|