Update README.md
Browse filesfix readme code snippets indentation
README.md
CHANGED
@@ -84,7 +84,9 @@ model = ORTModelForQuestionAnswering.from_pretrained("cmarkea/distilcamembert-ba
|
|
84 |
onnx_qa = pipeline("question-answering", model=model, tokenizer=tokenizer)
|
85 |
|
86 |
# Quantized onnx model
|
87 |
-
quantized_model = ORTModelForQuestionAnswering.from_pretrained(
|
|
|
|
|
88 |
```
|
89 |
|
90 |
Citation
|
|
|
84 |
onnx_qa = pipeline("question-answering", model=model, tokenizer=tokenizer)
|
85 |
|
86 |
# Quantized onnx model
|
87 |
+
quantized_model = ORTModelForQuestionAnswering.from_pretrained(
|
88 |
+
"cmarkea/distilcamembert-base-qa", file_name="model_quantized.onnx"
|
89 |
+
)
|
90 |
```
|
91 |
|
92 |
Citation
|