├── .gitignore ├── Dockerfile ├── Dockerfile-LexiconsSimilarity ├── NOTICE.txt ├── README.md ├── benchmark.py ├── data ├── lexicon.txt └── lexicon_links.tsv ├── get_entities.sh ├── get_similarity.sh ├── produce_data_files.sh ├── stopwords.txt └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-LexiconsSimilarity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/Dockerfile-LexiconsSimilarity -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/benchmark.py -------------------------------------------------------------------------------- /data/lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/data/lexicon.txt -------------------------------------------------------------------------------- /data/lexicon_links.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/data/lexicon_links.tsv -------------------------------------------------------------------------------- /get_entities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/get_entities.sh -------------------------------------------------------------------------------- /get_similarity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/get_similarity.sh -------------------------------------------------------------------------------- /produce_data_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/produce_data_files.sh -------------------------------------------------------------------------------- /stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/stopwords.txt -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasigeBioTM/MER/HEAD/test.sh --------------------------------------------------------------------------------