lucy1Chat / app.py
Rudra Shailendra Nanivadekar
Update app.py
3d04f6e
raw
history blame contribute delete
No virus
167 Bytes
import streamlit as st
from datasets import load_dataset
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
dataset = load_dataset("orange6996/lucyrev1")