Upload ort_config.json with huggingface_hub eb98a32 verified
Hafidz Sanjaya commited on
How to use rollerhafeezh/ner-silvanus-quantization with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="rollerhafeezh/ner-silvanus-quantization") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("rollerhafeezh/ner-silvanus-quantization")
model = AutoModelForTokenClassification.from_pretrained("rollerhafeezh/ner-silvanus-quantization")