efeperro commited on
Commit
1b34781
1 Parent(s): 3f52831

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -1,5 +1,5 @@
1
- import streamlit as st
2
- from functions_preprocess import LinguisticPreprocessor
3
  import pickle
4
  import nltk
5
  nltk.download('stopwords')
@@ -8,7 +8,6 @@ download_if_non_existent('taggers/averaged_perceptron_tagger', 'averaged_percept
8
  download_if_non_existent('corpora/wordnet', 'wordnet')
9
 
10
 
11
-
12
  #################################################################### Streamlit interface
13
  st.title("Movie Reviews: An NLP Sentiment analysis")
14
 
 
1
+ import streamlit as st
2
+ from functions_preprocess import LinguisticPreprocessor, download_if_non_existent
3
  import pickle
4
  import nltk
5
  nltk.download('stopwords')
 
8
  download_if_non_existent('corpora/wordnet', 'wordnet')
9
 
10
 
 
11
  #################################################################### Streamlit interface
12
  st.title("Movie Reviews: An NLP Sentiment analysis")
13