diff options
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 | ||