how to use it within the python code ?
#35
by
iben4
- opened
how to use it within the python code ?
i can't download the model and run it
you can't run it because the diffusers support isn't already added yet , it will be release in few hours
This comment has been hidden
import torch
model = "stabilityai/stable-diffusion-3-medium-diffusers"
pipe = StableDiffusion3Pipeline.from_pretrained(
model,
low_cpu_mem_usage=False,
torch_dtype=torch.float32,
use_safetensors=True,
...
)