Instructions to use sschet/biomedical-ner-all with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sschet/biomedical-ner-all with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="sschet/biomedical-ner-all")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("sschet/biomedical-ner-all") model = AutoModelForTokenClassification.from_pretrained("sschet/biomedical-ner-all", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -35,7 +35,7 @@ datasets:
|
|
| 35 |
- bc2gm_corpus
|
| 36 |
- drAbreu/bc4chemd_ner
|
| 37 |
- linnaeus
|
| 38 |
-
- ncbi_disease
|
| 39 |
---
|
| 40 |
|
| 41 |
## About the Model
|
|
|
|
| 35 |
- bc2gm_corpus
|
| 36 |
- drAbreu/bc4chemd_ner
|
| 37 |
- linnaeus
|
| 38 |
+
- chintagunta85/ncbi_disease
|
| 39 |
---
|
| 40 |
|
| 41 |
## About the Model
|