Spaces:
Paused
Paused
File size: 667 Bytes
52c5088 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import torch
from diffusers import StableDiffusionPipeline, AutoencoderKL
import gradio as gr
repo = "IDKiro/sdxs-512-0.9"
seed = 42
weight_type = torch.float16
# Load model.
pipe = StableDiffusionPipeline.from_pretrained(repo, torch_dtype=weight_type)
generator = pipe
# move to GPU if available
if torch.cuda.is_available():
generator = generator.to("cuda")
def generate(prompts):
images = generator(list(prompts)).images
return [images]
demo = gr.Interface(
generate,
"textbox",
"image",
batch=True,
max_batch_size=4, # Set the batch size based on your CPU/GPU memory
).queue()
if __name__ == "__main__":
demo.launch()
|