File size: 536 Bytes
dbaf842
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import os
import gradio as gr

def update(name):
    os.system('''python src/inversion.py  \
        --input_image "assets/test_images/cats/cat_1.png" \
        --results_folder "output/test_cat"
    ''')
    return f"Inverted!"

with gr.Blocks() as demo:
    gr.Markdown("Start typing below and then click **Run** to see the output.")
    with gr.Row():
        inp = gr.Textbox(placeholder="Do you want to invert?")
        out = gr.Textbox()
    btn = gr.Button("Run")
    btn.click(fn=update, inputs=inp, outputs=out)

demo.launch()