lfolle commited on
Commit
8a1657c
·
1 Parent(s): db65a6c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -9,7 +9,8 @@ from DummyModel import DummyModel
9
 
10
  file_path = hf_hub_download("lfolle/DeepNAPSIModel", "dummy_model.pth",
11
  use_auth_token=os.environ['DeepNAPSIModel'])
12
- model = DummyModel().load_state_dict(torch.load(file_path))
 
13
 
14
  def predict(data):
15
  return model(data)
 
9
 
10
  file_path = hf_hub_download("lfolle/DeepNAPSIModel", "dummy_model.pth",
11
  use_auth_token=os.environ['DeepNAPSIModel'])
12
+ model = DummyModel()
13
+ model.load_state_dict(torch.load(file_path))
14
 
15
  def predict(data):
16
  return model(data)