File size: 243 Bytes
4f77329
80cb31d
4f77329
80cb31d
 
4f77329
80cb31d
 
4f77329
80cb31d
1
2
3
4
5
6
7
8
9
10
import gradio as gr
import pandas as pd

def value_func():
    return pd.DataFrame({"Name": ["SD-XL", "SSD-1B", "Delibarate"], "LCM-LoRA": ["True", "True", "False"]})

with gr.Blocks() as demo:
    gr.DataFrame(value=value_func)

demo.launch()