Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
probing-vits
/
attention-heat-maps
like
18
Sleeping
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
1ae2bef
attention-heat-maps
/
app.py
ariG23498
HF staff
chore: adding a demo streamlit app
1ae2bef
almost 3 years ago
raw
Copy download link
history
blame
112 Bytes
import
streamlit
as
st
import
tensorflow
as
tf
x = st.slider(
"Select a value"
)
st.write(x,
"squared is"
, x * x)