Skip to content

Commit

Permalink
removed install nltk data hook in favor of nltk.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
bbengfort committed Aug 17, 2018
1 parent 461771b commit 7f17add
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
11 changes: 6 additions & 5 deletions bin/post_compile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# bin/post_compile
#!/usr/bin/env bash

if [ -f bin/install_nltk_data ]; then
echo "-----> Running install_nltk_data"
chmod +x bin/install_nltk_data
bin/install_nltk_data
fi
# Removed install NLTK data hook in favor of nltk.txt
# if [ -f bin/install_nltk_data ]; then
# echo "-----> Running install_nltk_data"
# chmod +x bin/install_nltk_data
# bin/install_nltk_data
# fi

echo "-----> Post-compile done"
6 changes: 6 additions & 0 deletions nltk.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
wordnet
punkt
averaged_perceptron_tagger
maxent_treebank_pos_tagger
maxent_ne_chunker
stopwords

0 comments on commit 7f17add

Please sign in to comment.