aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 19 insertions, 1 deletions
diff --git a/README.md b/README.md
index a2dc1b4..c87fe29 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,22 @@
1# Evaluating cross-lingual textual similarity on dictionary alignment 1# Evaluating cross-lingual textual similarity on dictionary alignment
2 2
3This repository contains the scripts to prepare the resources we have used for our study as well as open source implementations of the methods. 3This 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
16git clone https://github.com/yigitsever/Evaluating-Dictionary-Alignment.git && cd Evaluating-Dictionary-Alignment
17./get_data.sh
18```
19
20This will create two directories; `dictionaries` and `wordnets`.
21Linewise aligned definition files are in `wordnets/ready`.
4 22