Instructions to use CarlosRiverMe/SimpleTuner-stable-diffusion-3.5-large-ZukyTheDog with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use CarlosRiverMe/SimpleTuner-stable-diffusion-3.5-large-ZukyTheDog with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-3.5-large", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("CarlosRiverMe/SimpleTuner-stable-diffusion-3.5-large-ZukyTheDog") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
SimpleTuner-stable-diffusion-3.5-large-ZukyTheDog
This is a custom-trained LoRA model for Stable Diffusion 3.5, focused on generating images of ZukyTheDog.
Model Description
This model is a LoRA fine-tune of Stable Diffusion 3.5, trained to generate high-quality images of ZukyTheDog. It can be used to create detailed and accurate representations in various styles and settings.
Base Model
- Base Model: Stable Diffusion 3.5
How to Use
You can use this model in two ways:
1. Using Hugging Face Inference API
Simply input your prompt in the inference API tab above and click "Compute".
Example prompts:
- "A photo of ZukyTheDog sitting in a garden"
- "ZukyTheDog playing with a ball, high quality, detailed"
- "Portrait of ZukyTheDog in a natural setting"
2. Using Python Code
from diffusers import StableDiffusion3Pipeline
import torch
pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3.5-large", torch_dtype=torch.bfloat16)
pipe.to("cuda")
pipe.load_lycoris_weights("CarlosRiverMe/SimpleTuner-stable-diffusion-3.5-large-ZukyTheDog", weight_name="pytorch_lora_weights_final.safetensors")
prompt = "A photo of ZukyTheDog sitting in a garden"
image = pipe(prompt).images[0]
image.save("generated_image.png")
- Downloads last month
- 2
Model tree for CarlosRiverMe/SimpleTuner-stable-diffusion-3.5-large-ZukyTheDog
Base model
stabilityai/stable-diffusion-3.5-large