mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-09 02:00:44 +08:00
8aba1c991b
* Explicitly set value and add to docs * Fix wording a bit * Remove sentence that's not adding much * Remove extra word * Delete screenshot
37 lines
950 B
Python
37 lines
950 B
Python
import gradio as gr
|
|
import os
|
|
|
|
def combine(a, b):
|
|
return a + " " + b
|
|
|
|
def mirror(x):
|
|
return x
|
|
|
|
with gr.Blocks() as demo:
|
|
|
|
txt = gr.Textbox(label="Input", lines=2)
|
|
txt_2 = gr.Textbox(label="Input 2")
|
|
txt_3 = gr.Textbox(value="", label="Output")
|
|
btn = gr.Button(value="Submit")
|
|
btn.click(combine, inputs=[txt, txt_2], outputs=[txt_3])
|
|
|
|
with gr.Row():
|
|
im = gr.Image()
|
|
im_2 = gr.Image()
|
|
|
|
btn = gr.Button(value="Mirror Image")
|
|
btn.click(mirror, inputs=[im], outputs=[im_2])
|
|
|
|
gr.Markdown("## Text Examples")
|
|
gr.Examples([["hi", "Adam"], ["hello", "Eve"]], [txt, txt_2], txt_3, combine, cache_examples=True)
|
|
gr.Markdown("## Image Examples")
|
|
gr.Examples(
|
|
examples=[os.path.join(os.path.dirname(__file__), "lion.jpg")],
|
|
inputs=im,
|
|
outputs=im_2,
|
|
fn=mirror,
|
|
cache_examples=True)
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|