WALTERMAC commited on
Commit
f483769
·
verified ·
1 Parent(s): 713f34f

Update app.py

Browse files

se agrega nltk.download('punkt_tab')

Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -12,6 +12,7 @@ import plotly.express as px
12
  # Descargar stopwords de nltk
13
  nltk.download('stopwords')
14
  nltk.download('punkt')
 
15
 
16
  # Cargar el pipeline de análisis de sentimientos
17
  sentiment_analysis = pipeline('sentiment-analysis', model='dccuchile/bert-base-spanish-wwm-uncased')
 
12
  # Descargar stopwords de nltk
13
  nltk.download('stopwords')
14
  nltk.download('punkt')
15
+ nltk.download('punkt_tab')
16
 
17
  # Cargar el pipeline de análisis de sentimientos
18
  sentiment_analysis = pipeline('sentiment-analysis', model='dccuchile/bert-base-spanish-wwm-uncased')