Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -34,9 +34,9 @@ with mgzip.open(join('data', 'track_data.pickle.gz'), 'rb') as file:
|
|
34 |
track_data = pickle.load(file)
|
35 |
|
36 |
|
37 |
-
inputs = gr.Radio(['Any'] + list(track_data.artist.unique()), label='Choose an Artist for Song Initialization:')
|
38 |
|
39 |
|
40 |
i = gr.Interface(fn = main, inputs = inputs,
|
41 |
-
outputs = gr.File(label='Generated Guitar Tabs. Download and Unzip to View:'))
|
42 |
i.launch()
|
|
|
34 |
track_data = pickle.load(file)
|
35 |
|
36 |
|
37 |
+
inputs = gr.components.Radio(['Any'] + list(track_data.artist.unique()), label='Choose an Artist for Song Initialization:')
|
38 |
|
39 |
|
40 |
i = gr.Interface(fn = main, inputs = inputs,
|
41 |
+
outputs = gr.components.File(label='Generated Guitar Tabs. Download and Unzip to View:'))
|
42 |
i.launch()
|