Spaces:
Runtime error
Runtime error
File size: 480 Bytes
53bbad7 cd8ed16 b951c81 4fae598 ba9e9c7 4fae598 b951c81 53bbad7 b951c81 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
import os
import streamlit as st
# First row
col1, col2 = st.columns(2)
col1.title('DIFF-SVC Render')
col2.title('')
ckpt = col1.file_uploader("Choose your CKPT", type='ckpt')
config = col1.file_uploader("Choose your config", type='yaml')
audio = col1.file_uploader("Choose your audio", type=["wav"])
title = col2.text_input("Key", value="0")
title2 = col2.text_input("Speedup", value="20")
password = col2.text_input("Enter password")
# Rest of the code
|