lcebear / memoryDialogueBot

Master Thesis Project: A memory based dialogue agent
MIT License
6 stars 3 forks source link

NLTK download command #4

Closed Barachia closed 4 years ago

Barachia commented 4 years ago

Hi!

I just finished setting up the agent and found a small something missing in the installation. I had to do nltk.download('averaged_perceptron_tagger before the REST-API would work, now it's all fine.

lcebear commented 4 years ago

Indeed, you need to run nltk.download on 'stopwords', 'punkt', 'vader_lexicon' and 'averaged_perceptron_tagger' as mentioned in the README file

Hi!

I just finished setting up the agent and found a small something missing in the installation. I had to do nltk.download('averaged_perceptron_tagger before the REST-API would work, now it's all fine.

Barachia commented 4 years ago

Ah, yes, I overlooked that, thank you for pointing it out.