Spaces:
Paused
Paused
Update app.py
Browse files
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 =
|
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=
|
33 |
-
height=
|
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 |
):
|