Medvira commited on
Commit
c8bb09b
·
verified ·
1 Parent(s): 99b7485

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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("/content/bone_age_model.onnx")
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):