|
|
@ -32,6 +32,7 @@ clean: ## removes output (target) files
|
|
|
|
dirs: ## create the dirs in working dir
|
|
|
|
dirs: ## create the dirs in working dir
|
|
|
|
@-mkdir -p images/
|
|
|
|
@-mkdir -p images/
|
|
|
|
@-mkdir -p output/
|
|
|
|
@-mkdir -p output/
|
|
|
|
|
|
|
|
@-mkdir -p ocr/
|
|
|
|
@echo $(color_r)'Directories made': images/ output/
|
|
|
|
@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
|
|
|
|
# >>> import nltk
|
|
|
|
# >>> nltk.download('averaged_perceptron_tagger')
|
|
|
|
# >>> 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 $(@)
|
|
|
|
cat $< | python3 src/textbotconversation.py $(@)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|