Instructions to use RashidNLP/NER-Deberta with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RashidNLP/NER-Deberta with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="RashidNLP/NER-Deberta")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("RashidNLP/NER-Deberta") model = AutoModelForTokenClassification.from_pretrained("RashidNLP/NER-Deberta") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,6 +10,7 @@ tags:
|
|
| 10 |
- deberta-v3
|
| 11 |
datasets:
|
| 12 |
- DFKI-SLT/few-nerd
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
## Deberta for Named Entity Recognition
|
|
|
|
| 10 |
- deberta-v3
|
| 11 |
datasets:
|
| 12 |
- DFKI-SLT/few-nerd
|
| 13 |
+
license: mit
|
| 14 |
---
|
| 15 |
|
| 16 |
## Deberta for Named Entity Recognition
|