1from diffusers import DiffusionPipeline
2import torch
3
4pipeline = DiffusionPipeline.from_pretrained("Trkkk/fine_tuned_model", torch_dtype=torch.float16)
5prompt = "A busy urban street filled with cars stuck in traffic. Vehicles of various types, including sedans, SUVs, and buses, are lined up bumper to bumper. The road is crowded with vehicles, and drivers seem impatient. Streetlights, traffic signs, and nearby buildings add to the busy city atmosphere, while pedestrians wait on the sidewalks. The scene is set during daylight, with clear skies above, but the road is completely congested with no cars moving."
6image = pipeline(prompt).images[0]
7image.save("my_image.png")
More information on all the CLI arguments and the environment are available on your
wandb run page.