Downloads · 30 days
2
29% of all-time downloads
Trkkk/fine_tuned_model
fine_tuned_model is a text-to-image model from Trkkk. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as creativeml-openrail-m.
should probably proofread and complete it, then remove this comment. --
Downloads · 30 days
2
29% of all-time downloads
All-time downloads
7
Public
Parameters
860M
80.7 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors11.9 GB · 63%
From the Hugging Face model README
This pipeline was finetuned from CompVis/stable-diffusion-v1-4 on the Trkkk/txt_zu_img dataset. Below are some example images generated with the finetuned pipeline using the following prompts: ['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.']:

You can use the pipeline like so:
from diffusers import DiffusionPipeline
import torch
pipeline = DiffusionPipeline.from_pretrained("Trkkk/fine_tuned_model", torch_dtype=torch.float16)
prompt = "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."
image = pipeline(prompt).images[0]
image.save("my_image.png")
These are the key hyperparameters used during training:
More information on all the CLI arguments and the environment are available on your wandb run page.
# TODO: add an example code snippet for running this diffusion pipeline
[TODO: provide examples of latent issues and potential remediations]
[TODO: describe the data used to train the model]