feng2022 commited on
Commit
a997257
1 Parent(s): b076c7e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -64,7 +64,7 @@ def image_create(input_img):
64
  log_visual_freq=1000,
65
  input='text',
66
  )
67
- generator = create_generator("stylegan2-ffhq-config-f.pt","feng2022/Time-TravelRephotography_stylegan2-ffhq-config-f",args)
68
  latent = torch.randn((1, 512), device=device)
69
  img_out, _, _ = generator([latent])
70
  imgs_arr = make_image(img_out)
@@ -80,7 +80,7 @@ def main():
80
  args = parse_args()
81
  device = th.device()
82
  func = functools.partial(image_create, device=device)
83
- func = functools.update_wrapper(func, generate_image)
84
  iface = gr.Interface(
85
  func,
86
  [
 
64
  log_visual_freq=1000,
65
  input='text',
66
  )
67
+ generator = create_generator("stylegan2-ffhq-config-f.pt","feng2022/Time-TravelRephotography_stylegan2-ffhq-config-f",args,device)
68
  latent = torch.randn((1, 512), device=device)
69
  img_out, _, _ = generator([latent])
70
  imgs_arr = make_image(img_out)
 
80
  args = parse_args()
81
  device = th.device()
82
  func = functools.partial(image_create, device=device)
83
+ func = functools.update_wrapper(func, image_create)
84
  iface = gr.Interface(
85
  func,
86
  [