hbanduk commited on
Commit
ad83f06
·
verified ·
1 Parent(s): f4c9d50

Update tasks/text.py

Browse files
Files changed (1) hide show
  1. tasks/text.py +1 -1
tasks/text.py CHANGED
@@ -65,7 +65,7 @@ async def evaluate_text(request: TextEvaluationRequest):
65
  import onnxruntime as ort
66
 
67
  # Load the ONNX model and tokenizer
68
- MODEL_PATH = "/Users/hinabandukwala/Documents/frugalai/submission-template/models/distilbert_quantized_dynamic.onnx"
69
  tokenizer = DistilBertTokenizer.from_pretrained("distilbert-base-uncased")
70
  ort_session = ort.InferenceSession(MODEL_PATH, providers=["CPUExecutionProvider"])
71
 
 
65
  import onnxruntime as ort
66
 
67
  # Load the ONNX model and tokenizer
68
+ MODEL_PATH = "./distilbert_quantized_dynamic.onnx"
69
  tokenizer = DistilBertTokenizer.from_pretrained("distilbert-base-uncased")
70
  ort_session = ort.InferenceSession(MODEL_PATH, providers=["CPUExecutionProvider"])
71