Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
harmdevries
/
transformer_inference
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
harmdevries
commited on
Oct 22, 2022
Commit
e8795a3
·
1 Parent(s):
44ac4da
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+2
-3
app.py
CHANGED
Viewed
@@ -1,5 +1,4 @@
1
import streamlit as st
2
3
-
bs
= st.
input
('
Batch
size
')
4
-
5
-
1
import streamlit as st
2
3
+
x
= st.
slider
('
Select
a value
')
4
+
st.write(x, 'squared is', x * x)