kishkath commited on
Commit
92cec87
·
verified ·
1 Parent(s): 395f517

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ model = None
11
  def initialize_model():
12
  global model
13
  if model is None:
14
- model_path = 'models/model_state_dict.pth'
15
  if not os.path.exists(model_path):
16
  raise FileNotFoundError(f"Model file not found at {model_path}")
17
 
 
11
  def initialize_model():
12
  global model
13
  if model is None:
14
+ model_path = 'model/model_state_dict.pth'
15
  if not os.path.exists(model_path):
16
  raise FileNotFoundError(f"Model file not found at {model_path}")
17