Instructions to use luisgasco/model_ner_master with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use luisgasco/model_ner_master with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="luisgasco/model_ner_master")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("luisgasco/model_ner_master") model = AutoModelForTokenClassification.from_pretrained("luisgasco/model_ner_master") - Notebooks
- Google Colab
- Kaggle