Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
time-series-foundation-models/BFM
MJ
/
BFM
like
0
Running
App
Files
Files
Community
Mohammad Javad Darvishi
commited on
Sep 27
Commit
32d870a
•
1 Parent(s):
7ffe27e
Add application file
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import streamlit as st
2
+
3
+
x = st.slider('Select a value')
4
+
st.write(x, 'squared is', x * x)
5
+