chainyo commited on
Commit
7dfe6af
1 Parent(s): 1093102

Update README.md

Browse files

fix readme code snippets indentation

Files changed (1) hide show
  1. README.md +3 -1
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("cmarkea/distilcamembert-base-qa", file_name="model_quantized.onnx")
 
 
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