Spaces:
Runtime error
Runtime error
File size: 586 Bytes
5d87992 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import os
os.environ["KMP_DUPLICATE_LIB_OK"]="TRUE"
import warnings
warnings.filterwarnings('ignore')
import gradio as gr
from PIL import Image
from test_simple import test_simple
def predict(image: Image):
return test_simple(image)
title = "Underwater Image Restoration"
iface = gr.Interface(
predict,
inputs=gr.Image(type="pil"),
outputs="image",
title=title,
allow_flagging="never",
examples=[
["flatiron_1.tiff"],
["flatiron_2.tiff"],
["horse_canyon_1.tiff"],
["horse_canyon_2.tiff"],
],
)
iface.launch(share=True)
|