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.input.Textbox(lines=2, placeholder="Enter your input here...") | |
output_component = gr.output.Textbox() | |
iface = gr.Interface(fn=predict, inputs=input_component, outputs=output_component, title="OYI") | |
if __name__ == "__main__": | |
iface.launch() |