arxiv_plot / app.py
mmaleki92's picture
added dataset
f8529b3
raw
history blame
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)