typeof's picture
Create README.md
1047e5e
metadata
pipeline_tag: text-classification
from transformers import AutoTokenizer
from optimum.onnxruntime import ORTModelForQuestionAnswering
import optimum.onnxruntime

tokenizer = AutoTokenizer.from_pretrained("typeof/distilbert-base-cased-finetuned-conll03-english-quantized")
model = optimum.onnxruntime.ORTModelForTokenClassification.from_pretrained("typeof/distilbert-base-cased-finetuned-conll03-english-quantized")