diff options
-rw-r--r-- | README.md | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -1,5 +1,7 @@ | |||
1 | # Evaluating cross-lingual textual similarity on dictionary alignment | 1 | # Evaluating cross-lingual textual similarity on dictionary alignment |
2 | 2 | ||
3 | The code and the dataset in this repository has been used in [Evaluating cross-lingual textual similarity on dictionary alignment problem](https://link.springer.com/article/10.1007/s10579-020-09498-1). | ||
4 | |||
3 | This repository contains the scripts to prepare the resources as well as open source implementations of the methods. Word Mover's Distance and Sinkhorn implementations are extended from [Cross-lingual retrieval with Wasserstein distance](https://github.com/balikasg/WassersteinRetrieval) and supervised implementation is extended from https://github.com/fionn-mac/Manhattan-LSTM. | 5 | This repository contains the scripts to prepare the resources as well as open source implementations of the methods. Word Mover's Distance and Sinkhorn implementations are extended from [Cross-lingual retrieval with Wasserstein distance](https://github.com/balikasg/WassersteinRetrieval) and supervised implementation is extended from https://github.com/fionn-mac/Manhattan-LSTM. |
4 | 6 | ||
5 | ```bash | 7 | ```bash |
@@ -246,3 +248,23 @@ Will run on English and Romanian definitions. We included a batch script to run | |||
246 | ``` | 248 | ``` |
247 | ./run_supervised.sh | 249 | ./run_supervised.sh |
248 | ``` | 250 | ``` |
251 | |||
252 | # Citation | ||
253 | |||
254 | If you use this repository (code or dataset) please cite the relevant paper; | ||
255 | |||
256 | ```bibtex | ||
257 | @article{severEvaluating2020, | ||
258 | title = {Evaluating cross-lingual textual similarity on dictionary alignment problem}, | ||
259 | issn = {1574-0218}, | ||
260 | url = {https://doi.org/10.1007/s10579-020-09498-1}, | ||
261 | doi = {10.1007/s10579-020-09498-1}, | ||
262 | language = {en}, | ||
263 | urldate = {2020-07-01}, | ||
264 | journal = {Language Resources and Evaluation}, | ||
265 | author = {Sever, Yiğit and Ercan, Gönenç}, | ||
266 | month = jun, | ||
267 | year = {2020}, | ||
268 | } | ||
269 | ``` | ||
270 | |||