takamarou commited on
Commit
01783ae
·
1 Parent(s): b3d6ca9

only generate 1 image

Browse files
Files changed (1) hide show
  1. modules/app.py +1 -2
modules/app.py CHANGED
@@ -32,7 +32,7 @@ def index():
32
  """
33
  return Response(content=content, media_type="text/html")
34
 
35
- @spaces.GPU(duration=60)
36
  def sd_on_gpu(prompt, negative_prompt, num_inference_steps, height, width, guidance_scale):
37
  start_time = time.time()
38
  response = pipeline(
@@ -42,7 +42,6 @@ def sd_on_gpu(prompt, negative_prompt, num_inference_steps, height, width, guida
42
  height=height,
43
  width=width,
44
  guidance_scale=guidance_scale,
45
- num_images_per_prompt=10
46
  )
47
  run_time = time.time() - start_time
48
  return response, run_time
 
32
  """
33
  return Response(content=content, media_type="text/html")
34
 
35
+ @spaces.GPU(duration=30)
36
  def sd_on_gpu(prompt, negative_prompt, num_inference_steps, height, width, guidance_scale):
37
  start_time = time.time()
38
  response = pipeline(
 
42
  height=height,
43
  width=width,
44
  guidance_scale=guidance_scale,
 
45
  )
46
  run_time = time.time() - start_time
47
  return response, run_time