Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -41,8 +41,8 @@ def inference(img, task, run_on):
|
|
41 |
img = img.resize((width,height), Image.ANTIALIAS)
|
42 |
|
43 |
#parameters = {'inp_channels':3, 'out_channels':3, 'dim':48, 'num_blocks':[4,6,6,8], 'num_refinement_blocks':4, 'heads':[1,2,4,8], 'ffn_expansion_factor':2.66, 'bias':False, 'LayerNorm_type':'WithBias', 'dual_pixel_task':False}
|
44 |
-
|
45 |
-
model.load_state_dict(
|
46 |
#model.eval()
|
47 |
#model = torch.jit.load('deshabby.pt')
|
48 |
|
|
|
41 |
img = img.resize((width,height), Image.ANTIALIAS)
|
42 |
|
43 |
#parameters = {'inp_channels':3, 'out_channels':3, 'dim':48, 'num_blocks':[4,6,6,8], 'num_refinement_blocks':4, 'heads':[1,2,4,8], 'ffn_expansion_factor':2.66, 'bias':False, 'LayerNorm_type':'WithBias', 'dual_pixel_task':False}
|
44 |
+
model = torch.load('deshabby.pt')
|
45 |
+
model.load_state_dict(model['params'])
|
46 |
#model.eval()
|
47 |
#model = torch.jit.load('deshabby.pt')
|
48 |
|