File size: 283 Bytes
643df07
20765d0
 
 
 
643df07
6a6e875
 
20765d0
643df07
6a6e875
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
import os

def sorted(filepath):
    return os.path.listdir(filepath)

with gr.Blocks(title="🔊",theme=gr.themes.Base(primary_hue="rose",neutral_hue="zinc")) as app:
    with gr.Row():
        weight = gr.dropdown(choices=sorted('assets/weights'))

app.launch()