rm test.py

This commit is contained in:
duyalei 2019-07-14 13:27:47 +08:00
parent 1ae1a90fac
commit ff1940c8d5

19
test.py
View File

@ -1,19 +0,0 @@
# encoding: utf8
"""
Created on 2019.07.14
@author: yalei
"""
import gradio
# A very simplistic function that capitalizes each letter in the given string
def big(x):
return x.upper()
io = gradio.Interface(inputs="textbox", outputs="textbox",
model=big, model_type='pyfunc')
# io.launch(inline=False, inbrowser=True, share=True)
io.launch()