spacy-lookup icon indicating copy to clipboard operation
spacy-lookup copied to clipboard

Named Entity Recognition based on dictionaries

Results 5 spacy-lookup issues
Sort by recently updated
recently updated
newest added

Entity ruler can also complete this function, which should I use ?

It's not clear how to access/retrieve a value of label, passed into constructor at Entity instantiation step

I made an example as below by using spacy with lookup dependencies. ``` entity = Entity( keywords_list=["Japan", "Tokyo", "US"], label='from_location', case_sensitive=True) nlp.add_pipe(entity, name='location') entity2 = Entity( keywords_list=["Korea", "Japan", "US", "Tokyo"],...

How to create fuzzy similarity with this library, something like mapping partial word to correct word Example: Appple ---> Apple

Hi guys I have the similar issue as [https://github.com/marcotcr/lime/issues/294](url), which was also raised in [https://github.com/mpuig/spacy-lookup/issues/9](url) and [https://github.com/mpuig/spacy-lookup/issues/7](url) I run python 3.6 and I have installed spaCy from master. Nevertheless I...