.. _entity_linking: Entity Linking ==================================== Entity linking is the process of matching concepts mentioned in natural language to their unique IDs and canonical forms stored in a knowledge base. For example, an entity linking model might match the phrase ``blood thinners`` mentioned in conversation to the knowledge base concept UID45623 anticoagulant. Entity linking applications range from helping automate ingestion of large amounts of data to assisting in real time concept normalization. Within NeMo we use the entity linking approach described in Liu et. al's NAACL 2021 "`Self-alignment Pre-training for Biomedical Entity Representations `_" :cite:`nlp-entity_linking-liu2021selfalignment`. The main idea behind this approach is to reshape an initial concept embedding space such that synonyms of the same concept are pulled closer together and unrelated concepts are pushed further apart. The concept embeddings from this reshaped space can then be used to build a knowledge base embedding index. .. image:: https://github.com/NVIDIA/NeMo/blob/entity-linking-documentation/docs/source/nlp/entity_linking_overview.jpg :alt: Entity-Linking-Overview Our BERT-base + Self Alignment Pretraining implementation allows you to train an entity linking encoder. We also provide example code on building an index with `Medical UMLS `_ concepts `NeMo/examples/nlp/entity_linking/build_index.py `__. Please try the example Entity Linking model in a Jupyter notebook (can run on `Google's Colab `__). Connect to an instance with a GPU (**Runtime** -> **Change runtime type** -> select **GPU** for the hardware accelerator). An example script on how to train the model can be found here: `NeMo/examples/nlp/entity_linking `__. References ---------- .. bibliography:: nlp_all.bib :style: plain :labelprefix: nlp-entity_linking :keyprefix: nlp-entity_linking-