Views
No views yet

1from diffusers import DiffusionPipeline
2import torch
3
4pipeline = DiffusionPipeline.from_pretrained("ButterChicken98/sd15_deepweeds_clip_corpus_256_bs48_snr5_noise01_10k", torch_dtype=torch.float16)
5prompt = "A ground-level photo of Chinee apple weed in rangeland soil."
6image = pipeline(prompt).images[0]
7image.save("my_image.png")wandb run page.# TODO: add an example code snippet for running this diffusion pipeline