Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,11 @@
|
|
1 |
-
|
|
|
|
|
2 |
|
3 |
-
|
4 |
import nltk
|
|
|
|
|
5 |
# Ensure the VADER lexicon is downloaded
|
6 |
nltk.download('vader_lexicon')
|
7 |
|
|
|
1 |
+
git add app.py requirements.txt
|
2 |
+
git commit -m "Initial commit"
|
3 |
+
git push
|
4 |
|
5 |
+
import streamlit as st
|
6 |
import nltk
|
7 |
+
from nltk.sentiment.vader import SentimentIntensityAnalyzer
|
8 |
+
|
9 |
# Ensure the VADER lexicon is downloaded
|
10 |
nltk.download('vader_lexicon')
|
11 |
|