Views
No views yet
dog to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3pipeline = AutoPipelineForText2Image.from_pretrained('tonyshark/20250214_021225', torch_dtype=torch.bfloat16).to('cuda')
4image = pipeline('dog').images[0]# TODO: add an example code snippet for running this diffusion pipeline