Fabrice-TIERCELIN commited on
Commit
3dd58cf
1 Parent(s): 7953a14

*args, **kwargs

Browse files
Files changed (1) hide show
  1. gradio_demo.py +3 -3
gradio_demo.py CHANGED
@@ -242,10 +242,10 @@ def restore_in_7min(
242
 
243
  @spaces.GPU(duration=480)
244
  def restore_in_8min(
245
- noisy_image, denoise_image, prompt, a_prompt, n_prompt, num_samples, min_size, downscale, upscale, edm_steps, s_stage1, s_stage2, s_cfg, randomize_seed, seed, s_churn, s_noise, color_fix_type, diff_dtype, ae_dtype, gamma_correction, linear_CFG, linear_s_stage2, spt_linear_CFG, spt_linear_s_stage2, model_select, output_format, allocation
246
  ):
247
  return restore(
248
- noisy_image, denoise_image, prompt, a_prompt, n_prompt, num_samples, min_size, downscale, upscale, edm_steps, s_stage1, s_stage2, s_cfg, randomize_seed, seed, s_churn, s_noise, color_fix_type, diff_dtype, ae_dtype, gamma_correction, linear_CFG, linear_s_stage2, spt_linear_CFG, spt_linear_s_stage2, model_select, output_format, allocation
249
  )
250
 
251
  @spaces.GPU(duration=540)
@@ -488,7 +488,7 @@ title_html = """
488
 
489
  <p>This is an online demo of SUPIR, a practicing model scaling for photo-realistic image restoration.
490
  It is still a research project under tested and is not yet a stable commercial product.
491
- The content added by SUPIR is imagination, not real-world information.
492
  The aim of SUPIR is the beauty and the illustration.
493
  Most of the processes only last few minutes.
494
  This demo can handle huge images but the process will be aborted if it lasts more than 9 min.
 
242
 
243
  @spaces.GPU(duration=480)
244
  def restore_in_8min(
245
+ *args, **kwargs
246
  ):
247
  return restore(
248
+ *args, **kwargs
249
  )
250
 
251
  @spaces.GPU(duration=540)
 
488
 
489
  <p>This is an online demo of SUPIR, a practicing model scaling for photo-realistic image restoration.
490
  It is still a research project under tested and is not yet a stable commercial product.
491
+ The content added by SUPIR is <b><u>imagination, not real-world information</u></b>.
492
  The aim of SUPIR is the beauty and the illustration.
493
  Most of the processes only last few minutes.
494
  This demo can handle huge images but the process will be aborted if it lasts more than 9 min.