Subjective question: Is there a good crate for Named Entity Recognition?

I tried searching in crates.io but did not find much for "NER" or "named entity". If anybody has used Spacy (Python) in the past, something with similar output to the below would be ideal:

let text = "Today I ate a sandwich with Raul Smith at the Old Oak Cafe".to_string();
let entities = something::extract_entities(&text);
assert_eq!(entities, vec![something::Entities::Person("Raul Smith".to_string()), something::Entities::Business("Old Oak Cafe".to_string())]);
2 Likes

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.