Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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()
|
|
|
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)
|