Spaces:
Sleeping
Sleeping
Commit
·
3f1920d
1
Parent(s):
107ea52
add title and description
Browse files
app.py
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
|
3 |
print ("Load hv model...")
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
x = st.slider('Select a value')
|
5 |
st.write(x, 'squared is', x * x)
|
|
|
1 |
import streamlit as st
|
2 |
+
from transformers import pipeline
|
3 |
|
4 |
print ("Load hv model...")
|
5 |
+
|
6 |
+
#Title and Description
|
7 |
+
st.title("Title to space")
|
8 |
+
st.write("""This will be spaces description(manual)
|
9 |
+
""")
|
10 |
+
|
11 |
x = st.slider('Select a value')
|
12 |
st.write(x, 'squared is', x * x)
|