Spaces:
Sleeping
Sleeping
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) |