Views
No views yet
| Model | Caption Type | Optimizer | File |
|---|---|---|---|
| v0b | PREFIX | PRODIGY | sd35L-v3nu5-cop-v0b.safetensors |
| v0c | PREFIX | ADAMW8BIT | sd35L-v3nu5-cop-v0c.safetensors |
| v0d | CONTEXT | PRODIGY | sd35L-v3nu5-cop-v0d.safetensors |
| v0f | CONTEXT | ADAMW8BIT | sd35L-v3nu5-cop-v0f.safetensors |
.safetensors fileComfyUI/models/loras/ directory.safetensors filestable-diffusion-webui/models/Lora/ directory<lora:sd35L-v3nu5-cop-v0X:0.8> (replace X with variant)1from diffusers import StableDiffusion3Pipeline
2import torch
3
4# Load base model
5pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3.5-large")
6
7# Load LoRA weights
8pipe.load_lora_weights("mushroomfleet/v3nu5-cop", weight_name="sd35L-v3nu5-cop-v0b.safetensors")
9
10# Generate image
11prompt = "your prompt here"
12image = pipe(prompt, num_inference_steps=28, guidance_scale=4.5).images[0]1@misc{v3nu5-cop-lora,
2 title={v3nu5-cop: SD3.5 Large LoRA Models},
3 author={mushroomfleet},
4 year={2025},
5 howpublished={\url{https://huggingface.co/mushroomfleet/v3nu5-cop}}
6}