Edit model card

The model is fine tuned on different views and colors of car images.

For inference, the following sample code can be used.

from diffusers import StableDiffusionPipeline
import torch

model_path = "ahmadjaved97/car_genrator_sd"
pipe = StableDiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16)
pipe.unet.load_attn_procs(model_path)
pipe.to("cuda")

prompt = "Front view of a yellow sports car running on a road"
image = pipe(prompt, num_inference_steps=30, guidance_scale=7.5).images[0]
image.save("car_image.png")
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference API
Unable to determine this model's library. Check the docs .

Dataset used to train ahmadjaved97/car_genrator_sd