mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
27 lines
532 B
Python
27 lines
532 B
Python
import gradio as gr
|
|
import numpy as np
|
|
from time import time
|
|
|
|
|
|
def flip(image):
|
|
start = time()
|
|
return image, {
|
|
"1": 0.2,
|
|
"2": 0.8
|
|
}
|
|
|
|
|
|
def flip2(image):
|
|
start = time()
|
|
return np.fliplr(image), time() - start
|
|
|
|
|
|
gr.Interface(flip2,
|
|
gr.inputs.Image(shape=(50, 50, 3)),
|
|
["image", "text"],
|
|
examples=[
|
|
["images/cheetah1.jpg"],
|
|
["images/cheetah2.jpg"],
|
|
["images/lion.jpg"],
|
|
]
|
|
).launch() |