diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -3,6 +3,11 @@ | |||
3 | This repository contains the scripts to prepare the resources as well as open source implementations of the methods. Word Mover's Distance and Sinkhorn implementations are extended from [Cross-lingual retrieval with Wasserstein distance](https://github.com/balikasg/WassersteinRetrieval). | 3 | This repository contains the scripts to prepare the resources as well as open source implementations of the methods. Word Mover's Distance and Sinkhorn implementations are extended from [Cross-lingual retrieval with Wasserstein distance](https://github.com/balikasg/WassersteinRetrieval). |
4 | 4 | ||
5 | ## Requirements | 5 | ## Requirements |
6 | |||
7 | ```bash | ||
8 | pip install -r requirements.txt | ||
9 | ``` | ||
10 | |||
6 | - Python 3 | 11 | - Python 3 |
7 | - nltk | 12 | - nltk |
8 | ```python | 13 | ```python |
@@ -29,7 +34,7 @@ source ~/.env/evaluating/bin/activate | |||
29 | ``` | 34 | ``` |
30 | 35 | ||
31 | Inside the virtual environment, the python interpreter and the installed packages are isolated. | 36 | Inside the virtual environment, the python interpreter and the installed packages are isolated. |
32 | In order to install all dependencies automatically; | 37 | In order to install all dependencies automatically use the [pip](https://pypi.org/project/pip/) package installer; |
33 | 38 | ||
34 | ```bash | 39 | ```bash |
35 | pip install -r requirements.txt | 40 | pip install -r requirements.txt |