diff options
author | Yigit Sever | 2019-09-18 00:04:38 +0300 |
---|---|---|
committer | Yigit Sever | 2019-09-18 00:04:38 +0300 |
commit | 5927ca5589e3b41136aa884062fadef8c34eb2ad (patch) | |
tree | bdfb2e1e5d475b6281bb4f57685bf8255e44e014 /README.md | |
parent | b5693ef8b499ef46ea5e9513a1f3d41c3969859b (diff) | |
download | Evaluating-Dictionary-Alignment-5927ca5589e3b41136aa884062fadef8c34eb2ad.tar.gz Evaluating-Dictionary-Alignment-5927ca5589e3b41136aa884062fadef8c34eb2ad.tar.bz2 Evaluating-Dictionary-Alignment-5927ca5589e3b41136aa884062fadef8c34eb2ad.zip |
Add requirements and basic usage
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -1,4 +1,22 @@ | |||
1 | # Evaluating cross-lingual textual similarity on dictionary alignment | 1 | # Evaluating cross-lingual textual similarity on dictionary alignment |
2 | 2 | ||
3 | This repository contains the scripts to prepare the resources we have used for our study as well as open source implementations of the methods. | 3 | This repository contains the scripts to prepare the resources for the study as well as open source implementations of the methods. |
4 | |||
5 | ## Requirements | ||
6 | - python3 | ||
7 | - nltk | ||
8 | ```python | ||
9 | import nltk | ||
10 | nltk.download('wordnet') | ||
11 | ``` | ||
12 | |||
13 | ## Acquiring The Data | ||
14 | |||
15 | ```bash | ||
16 | git clone https://github.com/yigitsever/Evaluating-Dictionary-Alignment.git && cd Evaluating-Dictionary-Alignment | ||
17 | ./get_data.sh | ||
18 | ``` | ||
19 | |||
20 | This will create two directories; `dictionaries` and `wordnets`. | ||
21 | Linewise aligned definition files are in `wordnets/ready`. | ||
4 | 22 | ||