File size: 213 Bytes
3f9cf1b
f55c257
 
3f9cf1b
f55c257
 
 
3f9cf1b
f55c257
3f9cf1b
1
2
3
4
5
6
7
8
9
10
import gradio as gr
import joblib
from skops import io as sio

def convert(file):
    obj = joblib.load(file)
    return sio.dumps(obj)

iface = gr.Interface(fn=greet, inputs="file", outputs="file")
iface.launch()