File size: 313 Bytes
9b4a05a
8638595
9b4a05a
3122c78
9b4a05a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()