Token Classification
Transformers
TensorBoard
Safetensors
English
deberta-v2
named-entity-recognition
sequence-tagger-model
Instructions to use Babelscape/cner-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Babelscape/cner-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="Babelscape/cner-base")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("Babelscape/cner-base") model = AutoModelForTokenClassification.from_pretrained("Babelscape/cner-base", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,7 +24,7 @@ task_ids:
|
|
| 24 |
|
| 25 |
# CNER: Concept and Named Entity Recognition
|
| 26 |
This is the model card for the NAACL 2024 paper [CNER: Concept and Named Entity Recognition](https://aclanthology.org/2024.naacl-long.461/).
|
| 27 |
-
We fine-tuned a language model (DeBERTa-v3-base) for 1 epoch on our [CNER dataset](https://huggingface.co/datasets/Babelscape/cner)
|
| 28 |
The resulting CNER model is able to jointly identifying and classifying concepts and named entities with fine-grained tags.
|
| 29 |
|
| 30 |
**If you use the model, please reference this work in your paper**:
|
|
|
|
| 24 |
|
| 25 |
# CNER: Concept and Named Entity Recognition
|
| 26 |
This is the model card for the NAACL 2024 paper [CNER: Concept and Named Entity Recognition](https://aclanthology.org/2024.naacl-long.461/).
|
| 27 |
+
We fine-tuned a language model (DeBERTa-v3-base) for 1 epoch on our [CNER dataset](https://huggingface.co/datasets/Babelscape/cner) using the default hyperparameters, optimizer and architecture of Hugging Face, therefore the results of this model may differ from the ones presented in the paper.
|
| 28 |
The resulting CNER model is able to jointly identifying and classifying concepts and named entities with fine-grained tags.
|
| 29 |
|
| 30 |
**If you use the model, please reference this work in your paper**:
|