Python

Deep Learning – ChatBot with Python

Go for Chatbot with python, Step by Step

Step 1. Setup Python environment
1.1 Install python 3.8 compiler from “download
1.2 Install pycharm CE from “download

Step 2. Setup Tokenizing
2.1 Install Java “download
2.1 pip install konlpy
(In case of Windows, Download & Install ‘JPype’ from “download“)

Step 3. Test in python
3.1 coding like below
from konlpy.tag import Komoran
test1 = Komoran()
temp1 = “오늘은 날씨가 좋아요”
disp1 = test1.pos(temp1)
print(disp1)

Continued…