
1from diffusers import DiffusionPipeline
2import torch
3
4pipeline = DiffusionPipeline.from_pretrained("ButterChicken98/soy_ab_test", torch_dtype=torch.float16)
5prompt = "A soybean leaf in early infection of Bacterial Pustule, with tiny raised yellow spots near the edges."
6image = pipeline(prompt).images[0]
7image.save("my_image.png")wandb run page.# TODO: add an example code snippet for running this diffusion pipeline