import time import streamlit as st from PIL import Image st.title("Machine Learning Model Deployment") x = st.slider('Select a value') st.write(x, 'squared is', x * x)