Zaiiida commited on
Commit
571bfa0
·
verified ·
1 Parent(s): 369d95b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -17,7 +17,7 @@ else:
17
  pipe = DiffusionPipeline.from_pretrained(model_repo_id, torch_dtype=torch_dtype)
18
  pipe = pipe.to(device)
19
 
20
- MAX_IMAGE_SIZE = 512
21
 
22
  examples = [
23
  "A border collie lying in some Fall leaves as the forest trees change colors",
@@ -29,8 +29,8 @@ examples = [
29
  @spaces.GPU(duration=30)
30
  def infer(
31
  prompt,
32
- width=512,
33
- height=512,
34
  num_inference_steps=20,
35
  guidance_scale=7.5,
36
  ):
 
17
  pipe = DiffusionPipeline.from_pretrained(model_repo_id, torch_dtype=torch_dtype)
18
  pipe = pipe.to(device)
19
 
20
+ MAX_IMAGE_SIZE = 1024
21
 
22
  examples = [
23
  "A border collie lying in some Fall leaves as the forest trees change colors",
 
29
  @spaces.GPU(duration=30)
30
  def infer(
31
  prompt,
32
+ width=1024,
33
+ height=1024,
34
  num_inference_steps=20,
35
  guidance_scale=7.5,
36
  ):