Skip to content

Commit f307816

Browse files
committed
docs: added base documentation
0 parents  commit f307816

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.tsv
2+
*.pkl
3+
.idea

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM python:3.5
2+
COPY . /root/app
3+
WORKDIR /root/app
4+
RUN pip install -r requirements.txt
5+
CMD bash

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Stackoverflow question search chatbot
2+
3+
Final assignment of Advanced Machine Learning NLP HSE Course
4+
5+
## 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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
nltk==3.2.5
2+
numpy==1.13.3
3+
chatterbot-corpus==1.0.1
4+
chatterbot==0.7.6
5+
scikit-learn==0.19.1
6+
scipy==1.0.0

0 commit comments

Comments
 (0)