Views
No views yet
stabilityai/stable-diffusion-3.5-large-turbo. Weights, configs, and license are preserved verbatim.sd3.5_large_turbo.safetensors — single-file checkpoint.transformer/, vae/, scheduler/, text_encoder/, text_encoder_2/, text_encoder_3/, tokenizer*/ — diffusers-format components.text_encoders/ — single-file text encoders for ComfyUI workflows.model_index.json, SD3.5L_Turbo_example_workflow.json — pipeline and workflow configs.LICENSE.md — Stability AI Community License (verbatim).1import torch
2from diffusers import StableDiffusion3Pipeline
3
4pipe = StableDiffusion3Pipeline.from_pretrained(
5 "cudabenchmarktest/stable-diffusion-3.5-large-turbo",
6 torch_dtype=torch.bfloat16,
7).to("cuda")
8
9image = pipe(
10 "A capybara holding a sign that reads Hello Fast World",
11 num_inference_steps=4,
12 guidance_scale=0.0,
13).images[0]
14image.save("out.png")LICENSE.md). Permits research, non-commercial use, and commercial use for organizations or individuals with less than $1M USD in total annual revenue. Above that threshold a separate Stability Enterprise license is required.stabilityai/stable-diffusion-3.5-large-turbo).