hope / app.py
Obotu's picture
Update app.py
76207fc verified
raw
history blame contribute delete
No virus
407 Bytes
import gradio as gr
import pickle
def load_model():
with open('svc.pkl', 'rb') as file:
model = pickle.load(file)
return model
input_component = gr.Textbox(lines=2, placeholder="Enter your input here...")
output_component = gr.Textbox()
iface = gr.Interface(fn=input_component, inputs=input_component, outputs=output_component, title="OYI")
if __name__ == "__main__":
iface.launch()