to-be commited on
Commit
c6760cf
1 Parent(s): 2e1828f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- checkpoint = torch.load('deshabby.pt')
45
- model.load_state_dict(checkpoint['params'])
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