Spaces:
Build error
Build error
File size: 1,451 Bytes
2f38bfd 24d2459 42da032 2f38bfd 24d2459 2f38bfd 24d2459 2f38bfd |
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 34 35 36 37 38 39 40 41 |
from stable_diffusion import Generate2img, Args
import gradio as gr
args = Args("", 5, None, 7.5, 512, 512, 443, "cpu", "./mdjrny-v4.pt")
model = Generate2img.instance(args)
def text2img_output(phrase):
return model(phrase)
readme = open("me.md","rb+").read().decode("utf-8")
phrase = gr.components.Textbox(
value="anthropomorphic cat portrait art")
text2img_out = gr.components.Image(type="numpy")
instance = gr.Blocks()
with instance:
with gr.Tabs():
with gr.TabItem("Text2Img"):
gr.Interface(fn=text2img_output, inputs=phrase, outputs=text2img_out, allow_flagging= "manual")
with gr.TabItem("Notes"):
gr.Markdown(
"Text2Img default config -- steps:5, seed:443, device:cpu, weight type:midjourney-v4-diffusion, width:512, height:512."),
gr.Markdown(readme)
instance.queue(concurrency_count=20).launch(share=False)
#
#
# 1) anthropomorphic cat portrait art
#
# 
#
# 2) anthropomorphic cat portrait art(mdjrny-v4.pt)
#
# 
#
# 3) Kung Fu Panda(weight: wd-1-3-penultimate-ucg-cont.pt, steps:50)
#
# 
# 
#
|