Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -25,13 +25,10 @@ if torch.cuda.is_available():
|
|
25 |
|
26 |
|
27 |
def pix2pix(prompt,
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
height=512,
|
33 |
-
seed
|
34 |
-
):
|
35 |
print(psutil.virtual_memory()) # print memory usage
|
36 |
|
37 |
if seed == 0:
|
@@ -41,7 +38,7 @@ def pix2pix(prompt,
|
|
41 |
|
42 |
#try:
|
43 |
image = Image.open(image)
|
44 |
-
ratio = min(
|
45 |
image = image.resize((int(image.width * ratio), int(image.height * ratio)), Image.LANCZOS)
|
46 |
|
47 |
result = pipe(
|
|
|
25 |
|
26 |
|
27 |
def pix2pix(prompt,
|
28 |
+
image,
|
29 |
+
steps,
|
30 |
+
image_guidance_scale,,
|
31 |
+
seed):
|
|
|
|
|
|
|
32 |
print(psutil.virtual_memory()) # print memory usage
|
33 |
|
34 |
if seed == 0:
|
|
|
38 |
|
39 |
#try:
|
40 |
image = Image.open(image)
|
41 |
+
ratio = min(512 / image.height, 512 / image.width)
|
42 |
image = image.resize((int(image.width * ratio), int(image.height * ratio)), Image.LANCZOS)
|
43 |
|
44 |
result = pipe(
|