Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
MossyHead/NLP_LSTM_team
NLPLSTMteam
/
NLP_LSTM_team
like
0
Build error
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
MossyHead
commited on
May 30, 2024
Commit
745936d
·
2 Parent(s):
51edd4b
623b988
Merge branch 'main' of https://huggingface.co/spaces/MossyHead/NLP_LSTM_team
Browse files
Files changed (1)
hide
show
main.py
+4
-0
main.py
ADDED
Viewed
@@ -0,0 +1,4 @@
1
+
import streamlit as st
2
+
3
+
x = st.slider('Select a value')
4
+
st.write(x, 'squared is', x * x)