You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,21 @@
3
3
## Sequence-to-Sequence Tutorial with Github Issues Data
4
4
Code For Medium Article: ["How To Create Data Products That Are Magical Using Sequence-to-Sequence Models"](https://medium.com/@hamelhusain/how-to-create-data-products-that-are-magical-using-sequence-to-sequence-models-703f86a231f8)
5
5
6
+
## Installation
7
+
8
+
`pip install -r requirements.txt`
9
+
10
+
If you are using the AWS Deep Learning Ubuntu AMI, many of the required dependencies will already be installed,
11
+
so you only need to run:
12
+
13
+
```
14
+
source activate tensorflow_p36
15
+
pip install ktext annoy nltk pydot
16
+
```
17
+
18
+
See #4 below if you wish to run this tutorial using Docker.
19
+
20
+
6
21
## Resources:
7
22
8
23
1.[Tutorial Notebook](https://nbviewer.jupyter.org/github/hamelsmu/Seq2Seq_Tutorial/blob/master/notebooks/Tutorial.ipynb): The Jupyter notebook that coincides with the Medium post.
@@ -11,5 +26,18 @@ Code For Medium Article: ["How To Create Data Products That Are Magical Using Se
11
26
12
27
3.[ktext](https://github.com/hamelsmu/ktext): this library is used in the tutorial to clean data. This library can be installed with `pip`.
13
28
14
-
4.[Nvidia Docker Container](https://hub.docker.com/r/hamelsmu/seq2seq_tutorial/): contains all libraries that are required to run the tutorial. This container is built with Nvidia-Docker v1.0. You can run this container by executing `nvidia-docker run hamelsmu/seq2seq_tutorial/` after installing **Nvidia-Docker v1.0.** Note: I have not tested this on Nvidia-Docker v2.0.
29
+
4.[Nvidia Docker Container](https://hub.docker.com/r/hamelsmu/seq2seq_tutorial/): contains all libraries that are required to run the tutorial. This container is built with Nvidia-Docker v1.0. You can install Nvidia-Docker and run this container like so:
0 commit comments