milestone-3 / app.py
nppmatt's picture
Update app.py
d0ae0ec
raw
history blame
124 Bytes
from transformers import pipeline
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)