Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| import pandas as pd | |
| def value_func(): | |
| return pd.DataFrame({"Name": ["SD-XL", "SSD-1B", "Delibarate-V3", "DALLE•3-XL", "Midjourney-V4-XL"], | |
| "LCM-LoRA": ["True", "True", "False", "False", "False"], | |
| "Dev by": ["StabilityAI", "Segmind AI", "XpucT", "OpenSkyML", "OpenSkyML"], | |
| }) | |
| with gr.Blocks() as demo: | |
| gr.Markdown(""" | |
| # 🎖️ Diffusion Models Leaderboard | |
| 🤗 Using this simple table you can familiarize yourself with good Diffusion models on HuggingFace. | |
| 🤩 The Leaderboard is made by OpenSkyML and is based on subjective opinion. | |
| """) | |
| gr.DataFrame(value=value_func) | |
| demo.launch(show_api=False) |