catalin-hanga commited on
Commit
5b19e1e
·
1 Parent(s): cde4afd
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,4 +1,6 @@
 
 
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value', min_value=1, max_value=10)
4
  st.write(x, 'squared is', x * x)
 
1
+ # https://medium.com/@imanuelyosi/deploy-your-streamlit-web-app-using-hugging-face-7b9cddb11148
2
+
3
  import streamlit as st
4
 
5
+ x = st.slider('Select a value', min_value = 1, max_value = 10)
6
  st.write(x, 'squared is', x * x)