aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYigit Sever2019-09-18 00:04:38 +0300
committerYigit Sever2019-09-18 00:04:38 +0300
commit5927ca5589e3b41136aa884062fadef8c34eb2ad (patch)
treebdfb2e1e5d475b6281bb4f57685bf8255e44e014
parentb5693ef8b499ef46ea5e9513a1f3d41c3969859b (diff)
downloadEvaluating-Dictionary-Alignment-5927ca5589e3b41136aa884062fadef8c34eb2ad.tar.gz
Evaluating-Dictionary-Alignment-5927ca5589e3b41136aa884062fadef8c34eb2ad.tar.bz2
Evaluating-Dictionary-Alignment-5927ca5589e3b41136aa884062fadef8c34eb2ad.zip
Add requirements and basic usage
-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