We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit f307816Copy full SHA for f307816
.gitignore
@@ -0,0 +1,3 @@
1
+*.tsv
2
+*.pkl
3
+.idea
Dockerfile
@@ -0,0 +1,5 @@
+FROM python:3.5
+COPY . /root/app
+WORKDIR /root/app
4
+RUN pip install -r requirements.txt
5
+CMD bash
README.md
@@ -0,0 +1,10 @@
+# Stackoverflow question search chatbot
+
+Final assignment of Advanced Machine Learning NLP HSE Course
+## How to run?
6
7
+```bash
8
+docker build -t stackoverflow_bot .
9
+docker run --rm -d stackoverflow_bot python3 main_bot.py --token <your_bot_token>
10
+```
requirements.txt
@@ -0,0 +1,6 @@
+nltk==3.2.5
+numpy==1.13.3
+chatterbot-corpus==1.0.1
+chatterbot==0.7.6
+scikit-learn==0.19.1
+scipy==1.0.0
0 commit comments