Named Entity Recognition model for feline veterinary medicine, trained on 1,300 annotated sentences from PubMed literature.
Span-level named entity recognition using a BIO tagging scheme over five entity types:
Performance varies by entity type; PROCEDURE and ANATOMY remain challenging due to boundary ambiguity.
1from transformers import pipeline
2ner = pipeline("ner", model="Statistical-Impossibility/Feline-NER", aggregation_strategy="simple")
3print(ner("The cat was diagnosed with FIV and treated with prednisolone."))