Entity Recognition from Search Queries #12451
-
Hi, I am working on a search application, and want to extract relevant named entities from the search query. I am thinking of using spacy's Parts of Speech tagger for the same. Using Parts of Speech tagger, I can find topics/entities using contiguous chunks of important PoS tags. I can also find relationship between those terms using adposition terms. E.g. Consider the query -- "Gaming culture in India". Using spacy PoS tagger, we get the following (token, Pos tag) mappings: Considering Nouns and Verbs as important identifiers, we extract phrases as: My question is:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey atalnarayan, In general the approach you are taking seems to be on the right track, but your question is a bit general for a discussion here. Let me point you to some relevant material:
|
Beta Was this translation helpful? Give feedback.
Hey atalnarayan,
In general the approach you are taking seems to be on the right track, but your question is a bit general for a discussion here. Let me point you to some relevant material:
sense2vec
: https://www.youtube.com/watch?v=EoYHbUHr0fMEntityRuler
we recommend using theSpanRuler
in the future: https://spacy.io/api/spanruler