Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
calicartels authored Dec 26, 2023
1 parent 597e966 commit c35d721
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions model_deployment.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import streamlit as st

def load_model():
'''
This function loads a previously saved pipeline.
'''
return st.file_uploader("Choose a model", type= ['pkl', 'h5', 'joblib'])


def deploy_model():
"""
This function deploys the entire ML pipeline on the cloud.
"""
# Feature work ..
pass

0 comments on commit c35d721

Please sign in to comment.