Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,8 @@
|
|
1 |
import streamlit as st
|
|
|
|
|
|
|
|
|
2 |
|
3 |
st.title('Drums generation in different models')
|
4 |
add_selectbox = st.sidebar.selectbox(
|
@@ -11,7 +15,8 @@ add_slider = st.sidebar.slider(
|
|
11 |
'Select a range of values',
|
12 |
0.0, 100.0, (25.0, 75.0)
|
13 |
)
|
14 |
-
|
|
|
15 |
st.title("Examples")
|
16 |
col1, col2, col3 = st.columns(3)
|
17 |
with col1:
|
|
|
1 |
import streamlit as st
|
2 |
+
audioldm_exmples_input_paths = []
|
3 |
+
audioldm_exmples_original_paths = []
|
4 |
+
audioldm_exmples_prompts = []
|
5 |
+
|
6 |
|
7 |
st.title('Drums generation in different models')
|
8 |
add_selectbox = st.sidebar.selectbox(
|
|
|
15 |
'Select a range of values',
|
16 |
0.0, 100.0, (25.0, 75.0)
|
17 |
)
|
18 |
+
st.subheader('This is a subheader with a divider', divider='rainbow')
|
19 |
+
with st.container(boarder = True):
|
20 |
st.title("Examples")
|
21 |
col1, col2, col3 = st.columns(3)
|
22 |
with col1:
|