File size: 691 Bytes
783ed72
 
 
9c64075
783ed72
6ec1d60
64f3d4d
783ed72
 
 
0d4f8b2
783ed72
 
0d4f8b2
783ed72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr
from diffusers import StableDiffusionPipeline
import torch
#import huggingface_hub as hf
#remember to login with token before loading model
def text_to_hair(prompt, num_inference_steps=200, guidance_scale=9, model_path ="./"):
    pipe = StableDiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-2", torch_dtype=torch.float16)
    pipe.unet.load_attn_procs(model_path)
    pipe.to("cuda")
    image = pipe(prompt, num_inference_steps=num_inference_steps, guidance_scale=8).images[0]
    #image.save(save_name) #comment if don't want to save image
    return image #PIL format

demo = gr.Interface(fn=text_to_hair, inputs="text", outputs="image")
demo.launch()