SuperResolution / app.py
Dhruv Diddi
init app
1c1a324
raw
history blame
193 Bytes
import gradio as gr
import numpy as np
from PIL import Image
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()