Views
No views yet

1from diffusers import DiffusionPipeline
2import torch
3
4pipeline = DiffusionPipeline.from_pretrained("MaxReynolds/SouderRocketLauncherNetCombinedGenerated", torch_dtype=torch.float16)
5prompt = "Rocket Launcher by Lee Souder"
6image = pipeline(prompt).images[0]
7image.save("my_image.png")wandb run page.