ML | DL

[Entity Linking Model] Spacy Entity Linker

pushpush 2023. 8. 7. 17:34

특정 단어를 wikipedia에 검색했을 때 direct mapping으로 검색을 할 경우 wikipedia에는 모든 정보가 있지만 내가 검색한 title로 문서가 검색되지 않아 404가 너무 많이 뜨는 오류가 발생했다.

그래서 내가 A를 검색했을 때 Wikipedia에 존재하는 문서의 Title A'을 알려주는 Entity liniking model을 검색했더니 Spacy model이 나왔다.

https://pypi.org/project/spacy-entity-linker/

 

spacy-entity-linker

Linked Entity Pipeline for spaCy

pypi.org

이대로 설치하면 되고 추가적으로 "en_core_web_md" 를 설치해야된다.

 

https://spacy.io/models/en

 

English · spaCy Models Documentation

spaCy is a free open-source library for Natural Language Processing in Python. It features NER, POS tagging, dependency parsing, word vectors and more.

spacy.io

이 사이트를 참고하면 된다.