josuelmet commited on
Commit
6aff340
·
1 Parent(s): b1e6ef7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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()