Token Classification
Transformers
Safetensors
English
modernbert
insurance
ner
named-entity-recognition
uk-insurance
bytical
Eval Results (legacy)
Instructions to use piyushptiwari/InsureNER with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use piyushptiwari/InsureNER with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="piyushptiwari/InsureNER")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("piyushptiwari/InsureNER") model = AutoModelForTokenClassification.from_pretrained("piyushptiwari/InsureNER") - Notebooks
- Google Colab
- Kaggle
| { | |
| "backend": "tokenizers", | |
| "clean_up_tokenization_spaces": true, | |
| "cls_token": "[CLS]", | |
| "is_local": false, | |
| "mask_token": "[MASK]", | |
| "model_input_names": [ | |
| "input_ids", | |
| "attention_mask" | |
| ], | |
| "model_max_length": 8192, | |
| "pad_token": "[PAD]", | |
| "sep_token": "[SEP]", | |
| "tokenizer_class": "TokenizersBackend", | |
| "unk_token": "[UNK]" | |
| } | |