Spaces:
Runtime error
Runtime error
File size: 365 Bytes
4f974de 8e99664 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/env bash
# 1) Indicar a NLTK que use la carpeta nltk_data dentro del repositorio
export NLTK_DATA="nltk_data"
# 2) Descarga silenciosa de los paquetes “punkt” y “stopwords” en nltk_data
python - <<EOF
import nltk
nltk.download('punkt', download_dir='nltk_data', quiet=True)
nltk.download('stopwords', download_dir='nltk_data', quiet=True)
EOF
|