Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mmaleki92
/
arxiv_plot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f8529b3
arxiv_plot
/
app.py
mmaleki92
added dataset
f8529b3
over 1 year ago
raw
Copy download link
history
blame
Safe
180 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)
from
datasets
import
load_dataset
dataset = load_dataset(
"arxiv_dataset"
)
print
(dataset)