File size: 362 Bytes
4358814 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import os
import gradio as gr
API_KEY=os.environ.get('HUGGING_FACE_HUB_TOKEN', None)
article = """Thank you for using Stable Diffusion VAE"""
gr.Interface.load(
name="models/stabilityai/sd-vae-ft-mse",
title="""SD VAE""",
description="""Stable Diffusion VAE""",
article=article,
api_key=API_KEY,
).queue(concurrency_count=20).launch()
|