tigorsinaga commited on
Commit
4806e46
·
verified ·
1 Parent(s): 1c7c668

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -93,8 +93,8 @@ with gr.Blocks() as interface:
93
  use_sample_button.click(fn=lambda: sample_audio_path, inputs=[], outputs=audio_input)
94
  predict_button.click(fn=predict_chords, inputs=audio_input, outputs=output_text, queue=True)
95
 
96
- gr.Markdown(f"<h2 style='text-align: center;'>{tutorial}</h3>") # Menambahkan tutorial penggunaan
97
 
98
- gr.Markdown("<p style='text-align: center; font-size: 12px; color: grey;'>This project is still under development and has not yet reached high accuracy.</p>")
99
 
100
  interface.launch(share=True)
 
93
  use_sample_button.click(fn=lambda: sample_audio_path, inputs=[], outputs=audio_input)
94
  predict_button.click(fn=predict_chords, inputs=audio_input, outputs=output_text, queue=True)
95
 
96
+ gr.Markdown(f"<h3 style='text-align: center;'>{tutorial}</h3>") # Menambahkan tutorial penggunaan
97
 
98
+ gr.Markdown("<p style='text-align: center; font-size: 12px; color: grey;'>*This project is still under development and has not yet reached high accuracy.</p>")
99
 
100
  interface.launch(share=True)