Textclass / app.py
Daulet9900's picture
add title and description
3f1920d
raw
history blame
258 Bytes
import streamlit as st
from transformers import pipeline
print ("Load hv model...")
#Title and Description
st.title("Title to space")
st.write("""This will be spaces description(manual)
""")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)