nick-leland commited on
Commit
51f2947
·
1 Parent(s): e55fb20

Updated model location... again

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def load_model():
16
  """Load the ONNX model and get input features"""
17
  global MODEL, FEATURE_COLUMNS
18
  try:
19
- model_path = Path("model/rd2l_predictor.onnx")
20
  if not model_path.exists():
21
  return "Model file not found at: " + str(model_path)
22
 
 
16
  """Load the ONNX model and get input features"""
17
  global MODEL, FEATURE_COLUMNS
18
  try:
19
+ model_path = Path("model/rd2l_forest.onnx")
20
  if not model_path.exists():
21
  return "Model file not found at: " + str(model_path)
22