LoRA Weights for Fine-tuned Stable Diffusion Model

This repository contains LoRA (Low-Rank Adaptation) weights for a fine-tuned version of the Stable Diffusion v1.5 model.

Usage

To use these LoRA weights:

  1. Load the base Stable Diffusion v1.5 model
  2. Load these LoRA weights
  3. Generate images with your preferred prompts

Example:

from diffusers import AutoPipelineForText2Image
import torch

pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('your-username/your-lora-model-name', weight_name='pytorch_lora_weights.safetensors')

image = pipeline('your prompt here').images[0]
image.save('output.png')
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.

Dataset used to train rayaanoidpr/wongkarwai_sd-v1-5_Kohya_LoRA