You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Try to test inpainting as in description. I get the error:
... }} is not valid under any of the given schemas",
"type": "invalid_request_error",
"param": null,
"code": null
}
}
The case with only text prompt works ok.
The text was updated successfully, but these errors were encountered:
# make the right half of a saved image transparent
from PIL import Image, ImageDraw
image = Image.open('my_image.png')
m, n = image.size
area_to_keep = (0, 0, m//2, n)
image_alpha = Image.new("L", image.size, 0)
draw = ImageDraw.Draw(image_alpha)
draw.rectangle(area_to_keep, fill=255)
image_rgba = image.copy()
image_rgba.putalpha(image_alpha)
image_rgba = image_rgba.resize((1024, 1024)) # image must be square and 1024x1024
image_rgba.save('image_with_transparent_right_half.png')
# ask DALL·E to fill-in the transparent right half
generations = dalle.generate_from_masked_image(
"portal to another dimension, digital art",
"image_with_transparent_right_half.png",
)
and it fails with the error invalid_request error
The session is ok as the example with text prompt works well.
If you need more information, please specify what kind of information, i'll add it.
Try to test inpainting as in description. I get the error:
...
}} is not valid under any of the given schemas",
"type": "invalid_request_error",
"param": null,
"code": null
}
}
The case with only text prompt works ok.
The text was updated successfully, but these errors were encountered: