Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ if not os.path.exists(model_path):
|
|
13 |
gdown.download(model_url, model_path, quiet=False)
|
14 |
|
15 |
# Initialize the ONNX session
|
16 |
-
session = ort.InferenceSession(
|
17 |
|
18 |
# Define the inference function
|
19 |
def inference(sample_name):
|
|
|
13 |
gdown.download(model_url, model_path, quiet=False)
|
14 |
|
15 |
# Initialize the ONNX session
|
16 |
+
session = ort.InferenceSession(model_path)
|
17 |
|
18 |
# Define the inference function
|
19 |
def inference(sample_name):
|