diff --git a/.gitignore b/.gitignore index 5391d87..ee54bf3 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ __pycache__/ *.py[cod] *$py.class +venv/ + # C extensions *.so diff --git a/README.md b/README.md index fcb550c..7bb8ead 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Whatever you prefer (e.g. `conda` or `venv`) mkdir myproject $ cd myproject $ python3 -m venv venv +$ pip install -r requirements.txt ``` ### Activate it diff --git a/data.pth b/data.pth new file mode 100644 index 0000000..fd454a3 Binary files /dev/null and b/data.pth differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2991ea6 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +numpy +torch +nltk \ No newline at end of file