Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -48,10 +48,10 @@ def index():
|
|
48 |
|
49 |
comments_df = clustering.classify_sentiment_df(comments_df)
|
50 |
comments_df.to_pickle(
|
51 |
-
"/workspace/
|
52 |
)
|
53 |
comments_df = pd.read_pickle(
|
54 |
-
"/workspace/
|
55 |
)
|
56 |
sentiment_count = comments_df["sentimiento"].value_counts().to_dict()
|
57 |
sentiment_daily_graph = clustering.plot_sentiment_daily(comments_df)
|
|
|
48 |
|
49 |
comments_df = clustering.classify_sentiment_df(comments_df)
|
50 |
comments_df.to_pickle(
|
51 |
+
"/workspace/data/Comentarios-Youtube/comments_df.pkl"
|
52 |
)
|
53 |
comments_df = pd.read_pickle(
|
54 |
+
"/workspace/data/Comentarios-Youtube/comments_df.pkl"
|
55 |
)
|
56 |
sentiment_count = comments_df["sentimiento"].value_counts().to_dict()
|
57 |
sentiment_daily_graph = clustering.plot_sentiment_daily(comments_df)
|