VowpalWabbit / vowpal_wabbit

Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning.
https://vowpalwabbit.org
Other
8.47k stars 1.93k forks source link

is vowpal wabbit can work with NER? #4535

Open swatijibhkatesj opened 1 year ago

RohitRathore1 commented 1 year ago

@swatijibhkatesj As per knowledge, VowpalWabbit does not have built-in support for NER specifically, but it is possible to use VW for NER by transforming the NER problem into a multi-class classification problem. We can represent the input text as features and use labels to indicate the entity types for each token.

lalo commented 1 year ago

The closest thing would be this POS tagger https://github.com/hal3/vowpal_wabbit/blob/master/python/examples/Learning_to_Search.ipynb

Not exactly a NER but you can tag nouns.