From 3cd30d75a5701d36b623fedb0293a00d93520ff0 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 5 Mar 2018 09:25:51 +0100 Subject: [PATCH] added ocr to dirs --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 17be5f9..090dfce 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,7 @@ clean: ## removes output (target) files dirs: ## create the dirs in working dir @-mkdir -p images/ @-mkdir -p output/ + @-mkdir -p ocr/ @echo $(color_r)'Directories made': images/ output/ @@ -60,7 +61,7 @@ output/tagged-words.txt: ocr/output.txt ## Analyzes OCR'ed text using a Part of # >>> import nltk # >>> nltk.download('averaged_perceptron_tagger') -output/chatbot.txt: ocr/output.txt ## DESCRIBE WHAT IT DOES. Dependencies: python3's chatterbot +output/chatbot.txt: ocr/output.txt ## Comments a text with a simple chatbot. Dependencies: python3's chatterbot cat $< | python3 src/textbotconversation.py $(@)