File size: 488 Bytes
3f9cf1b
0aa6630
f55c257
 
3f9cf1b
f55c257
ef2ecb8
aa38de2
0aa6630
 
 
3f9cf1b
ef2ecb8
0aa6630
 
6f37b8e
0aa6630
 
 
3f9cf1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import gradio as gr
import tempfile
import joblib
from skops import io as sio

def convert(file):
    print(file)
    obj = joblib.load(file.name)
    _, fname = tempfile.mkstemp(prefix=file + ".skops")
    sio.dump(obj, fname)
    return fname


with gr.Blocks() as iface:
    file_output = gr.File()
    upload_button = gr.UploadButton("Click to Upload a File", file_types=None, file_count="single")
    upload_button.upload(convert, upload_button, file_output)
    
    
iface.launch()