typeof commited on
Commit
1047e5e
1 Parent(s): f8f33be

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: text-classification
3
+ ---
4
+
5
+ ```
6
+ from transformers import AutoTokenizer
7
+ from optimum.onnxruntime import ORTModelForQuestionAnswering
8
+ import optimum.onnxruntime
9
+
10
+ tokenizer = AutoTokenizer.from_pretrained("typeof/distilbert-base-cased-finetuned-conll03-english-quantized")
11
+ model = optimum.onnxruntime.ORTModelForTokenClassification.from_pretrained("typeof/distilbert-base-cased-finetuned-conll03-english-quantized")
12
+ ```