LingEval / app.py
research14's picture
added demo.launch
8fc7661
raw
history blame
218 Bytes
import gradio as gr
with gr.Blocks() as demo:
with gr.Row():
btn0 = gr.Button("Button 0", scale=0)
btn1 = gr.Button("Button 1", scale=1)
btn2 = gr.Button("Button 2", scale=2)
demo.launch()