Spaces:
No application file
No application file
Create app.py
#2
by
Steveaew
- opened
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
git clone https://huggingface.co/spaces/aman81/animate-anyone
|
2 |
+
hf download aman81/animate-anyone --repo-type=space
|
3 |
+
import streamlit as st
|
4 |
+
|
5 |
+
x = st.slider('Select a value')
|
6 |
+
st.write(x, 'squared is', x * x)
|
7 |
+
git add app.py && git commit -m 'Add application file' && git push
|