Spaces:
Sleeping
Sleeping
fahmiaziz98
commited on
Commit
·
e069d9a
1
Parent(s):
eb1008c
first commit
Browse files
app.py
CHANGED
@@ -1,5 +1,8 @@
|
|
|
|
1 |
import streamlit as st
|
|
|
2 |
|
|
|
3 |
x = st.slider('Select a value')
|
4 |
st.write(x, 'squared is', x * x)
|
5 |
|
|
|
1 |
+
import time
|
2 |
import streamlit as st
|
3 |
+
from PIL import Image
|
4 |
|
5 |
+
st.title("Machine Learning Model Deployment")
|
6 |
x = st.slider('Select a value')
|
7 |
st.write(x, 'squared is', x * x)
|
8 |
|