File size: 431 Bytes
1047e5e |
1 2 3 4 5 6 7 8 9 10 11 12 |
---
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")
``` |