test_space / app.py
KailashV's picture
pass security os no auth
097a7ab
raw
history blame contribute delete
587 Bytes
import gradio as gr
import spaces
import torch
import os
from diffusers import AutoPipelineForText2Image,DEISMultistepScheduler
pipe = AutoPipelineForText2Image.from_pretrained('Lykon/AAM_XL_AnimeMix', torch_dtype=torch.float16, variant="fp16")
pipe.scheduler = DEISMultistepScheduler.from_config(pipe.scheduler.config)
pipe = pipe.to("cuda")
@spaces.GPU
def predict(prompt):
return pipe(prompt, num_inference_steps=25).images[0]
demo = gr.Interface(
fn=predict,
inputs='text',
outputs= 'image',
)
demo.launch()
# demo.launch(auth=(os.getenv('USER'), os.getenv('PASSWORD')))