globalwordnet / cili

The Global WordNet Association Collaborative Inter-Lingual Index
Other
38 stars 8 forks source link

Collaborative Interlingual Index

The Collaborative Interlingual Index (CILI) maintains the data for a single interlingual index of concepts for wordnets. This respository contains all the data that is available in CILI as well as mappings to other resources.

Development and Maintenance

CILI is maintained by the Open Multilingual Wordnet. Please see its CILI page for more information about the project, including how to propose new concepts.

Citation

Francis Bond, Piek Vossen, John McCrae, and Christiane Fellbaum. 2016. CILI: the Collaborative Interlingual Index. In Proceedings of the 8th Global WordNet Conference (GWC), pages 50–57, Bucharest, Romania. Global Wordnet Association.

Repository Contents

The following files are in this repository:

Building scripts

There are two scripts to create the HTML and the TSV versions of the data. They both require Python 3.6+. The requirements can be installed with

pip install -r requirements.txt

The TSV script can be run as follows:

python3 make-tsv.py > cili.tsv

For the HTML the following will update the site

git checkout gh-pages
rm -fr docs
python make-html.py docs
git commit -am "A useful commit message"
git push