--- 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") ```