File size: 258 Bytes
0f97416
3f1920d
0f97416
107ea52
3f1920d
 
 
 
 
 
0f97416
 
1
2
3
4
5
6
7
8
9
10
11
12
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)