asigalov61 commited on
Commit
0c2c10c
·
verified ·
1 Parent(s): 46493b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -63,9 +63,8 @@ def format_table_data(data_string):
63
  #==========================================================================================================
64
 
65
 
66
- MODELS = {'Llama 3.1 Nemotron 70B Instruct HF': 'nvidia/Llama-3.1-Nemotron-70B-Instruct-HF',
67
- 'Mistral Nemo Instruct 2407': 'mistralai/Mistral-Nemo-Instruct-2407'
68
- }
69
 
70
  #==========================================================================================================
71
 
@@ -236,8 +235,8 @@ if __name__ == "__main__":
236
  gr.Markdown("## Upload your MIDI")
237
 
238
  input_midi = gr.File(label="Input MIDI", file_types=[".midi", ".mid", ".kar"], type="filepath")
239
- input_model = gr.Dropdown(['Llama 3.1 Nemotron 70B Instruct HF', 'Mistral Nemo Instruct 2407'],
240
- value='Llama 3.1 Nemotron 70B Instruct HF',
241
  label='Select model'
242
  )
243
 
 
63
  #==========================================================================================================
64
 
65
 
66
+ MODELS = {'Mistral Nemo Instruct 2407': 'mistralai/Mistral-Nemo-Instruct-2407'
67
+ }
 
68
 
69
  #==========================================================================================================
70
 
 
235
  gr.Markdown("## Upload your MIDI")
236
 
237
  input_midi = gr.File(label="Input MIDI", file_types=[".midi", ".mid", ".kar"], type="filepath")
238
+ input_model = gr.Dropdown(['Mistral Nemo Instruct 2407', 'Mistral Nemo Instruct 2407'],
239
+ value='Mistral Nemo Instruct 2407',
240
  label='Select model'
241
  )
242