Dvjc1899's picture
Update app.py
9b4a05a
raw
history blame
313 Bytes
import tensorflow as tf
from huggingface_hub import from_pretrained_keras
import gradio as gr
model = from_pretrained_keras("Dvjc1899/super-resolution")
def infer():
return("hello world")
iface = gr.Interface(
fn=infer,
title = "Super-resolution",
inputs=["text"],
outputs=[
"textbox",
],
).launch()