Spaces:
Runtime error
Runtime error
..
Browse files
app.py
CHANGED
@@ -41,8 +41,8 @@ def infer(prompt, negative_prompt, image):
|
|
41 |
# implement your inference function here
|
42 |
inp = Image.fromarray(image)
|
43 |
|
44 |
-
cond_input = conditioning_image_transforms(inp)
|
45 |
-
cond_input = T.ToPILImage()(cond_input
|
46 |
|
47 |
output = pipe(
|
48 |
prompt,
|
|
|
41 |
# implement your inference function here
|
42 |
inp = Image.fromarray(image)
|
43 |
|
44 |
+
cond_input = conditioning_image_transforms(inp).to("cpu", dtype=torch.float16)
|
45 |
+
cond_input = T.ToPILImage()(cond_input)
|
46 |
|
47 |
output = pipe(
|
48 |
prompt,
|