saraayum's picture
Upload 4 files
5b9dafc verified
raw
history blame contribute delete
235 Bytes
import gradio as gr
from inference import predict
interface = gr.Interface(
fn=predict,
inputs=gr.Image(type="filepath", label="Upload SAR Image"),
outputs="image",
title="SAR Image Colorization"
)
interface.launch()