Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -38,7 +38,9 @@ def generate(input_image, prompt):
|
|
| 38 |
result = pipe(
|
| 39 |
prompt=prompt,
|
| 40 |
image=depth_image,
|
| 41 |
-
|
|
|
|
|
|
|
| 42 |
).images[0]
|
| 43 |
|
| 44 |
return result
|
|
|
|
| 38 |
result = pipe(
|
| 39 |
prompt=prompt,
|
| 40 |
image=depth_image,
|
| 41 |
+
height=720,
|
| 42 |
+
width=1280,
|
| 43 |
+
num_inference_steps=15
|
| 44 |
).images[0]
|
| 45 |
|
| 46 |
return result
|