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