Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -24,8 +24,8 @@ from fastai.learner import load_learner
|
|
24 |
|
25 |
model = torch.load("h2z-85epoch.pth",map_location=torch.device('cpu'))
|
26 |
def generate_img(img):
|
27 |
-
|
28 |
-
return
|
29 |
|
30 |
|
31 |
image = gr.inputs.Image(type="numpy")
|
|
|
24 |
|
25 |
model = torch.load("h2z-85epoch.pth",map_location=torch.device('cpu'))
|
26 |
def generate_img(img):
|
27 |
+
_,_,preds = learn.get_preds(dl=[b], with_decoded=True)
|
28 |
+
return preds
|
29 |
|
30 |
|
31 |
image = gr.inputs.Image(type="numpy")
|