Views
No views yet

1from diffusers import DiffusionPipeline
2import torch
3
4pipeline = DiffusionPipeline.from_pretrained("ButterChicken98/sd15_cottonweed15_structured_captions_bs48_snr5_noise01_10k", torch_dtype=torch.float16)
5prompt = "A detailed photograph of Carpetweeds, showing daylight: bright, stem structure: thin and green, leaf morphology: oval-shaped with pointed tips, image: a close-up of a plant growing on a textured surface, surface texture: rough and uneven with patches of moss or algae, soil: not clearly visible, but appears to be compacted earth."
6image = pipeline(prompt).images[0]
7image.save("my_image.png")wandb run page.# TODO: add an example code snippet for running this diffusion pipeline