Created
January 12, 2023 01:24
-
-
Save victormurcia/95ad0bd4d32062602103c48ef208c3f2 to your computer and use it in GitHub Desktop.
create art using stable AI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
remove_safety = False | |
num_images = 4 | |
if remove_safety: | |
negative_prompt = None | |
else: | |
negative_prompt = "nude, naked" | |
images = pipe( | |
prompt, | |
height = image_length, | |
width = image_length, | |
num_inference_steps = 25, | |
guidance_scale = 9, | |
num_images_per_prompt = num_images, | |
negative_prompt = negative_prompt, | |
).images | |
media.show_images(images) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment