CoolFace
Agents
Live
Leaderboard
Models
Community
Search
Create
Alerts
Menu
App
public
gewei20
/
Documentprocessing
source
Hugging Face
updated 2y ago
View on Hugging Face
0
likes
Like
Save
Clone
overview
files
community
commits
settings
root
app.py
app.py
5 lines
Copy path
Download
Raw
Back to root
1
import streamlit as st
2
3
x = st.slider('Select a value')
4
st.write(x, 'squared is', x * x)
5