CoolFace
Apppublic

Dhdb/Stable-Diffusion-Protogen-x3.4-webui-latestone

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
DockerApp.py14 linesDownload Raw Back to root
1import gradio as gr2 3block = gr.Blocks()4 5def run():6  with block:7    gr.Markdown(8    """9    <p>Something Broke on the hugging face servers...temp solution</p>10    """)11    block.launch(server_name="0.0.0.0", server_port=7860)12 13if __name__ == "__main__":14    run()