Token Classification
Transformers
Safetensors
English
bert
veterinary
nlp
ner
named-entity-recognition
biomedical
feline
Instructions to use Statistical-Impossibility/Feline-NER with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Statistical-Impossibility/Feline-NER with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="Statistical-Impossibility/Feline-NER")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("Statistical-Impossibility/Feline-NER") model = AutoModelForTokenClassification.from_pretrained("Statistical-Impossibility/Feline-NER") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -71,4 +71,5 @@ print(ner("The cat was diagnosed with FIV and treated with prednisolone."))
|
|
| 71 |
- Single-annotator dataset
|
| 72 |
|
| 73 |
## Author
|
| 74 |
-
Statistical-Impossibility
|
|
|
|
|
|
| 71 |
- Single-annotator dataset
|
| 72 |
|
| 73 |
## Author
|
| 74 |
+
Statistical-Impossibility
|
| 75 |
+
Project repository: [Feline-Project](https://github.com/Statistical-Impossibility/Feline-Project)
|