mattricesound commited on
Commit
3298dbb
·
1 Parent(s): 9c58e14

Fixed README2

Browse files
Files changed (2) hide show
  1. README.md +0 -1
  2. app.py +1 -1
README.md CHANGED
@@ -7,5 +7,4 @@ sdk: gradio
7
  sdk_version: 4.31.4
8
  app_file: app.py
9
  license: mit
10
- python_version: 3.10
11
  ---
 
7
  sdk_version: 4.31.4
8
  app_file: app.py
9
  license: mit
 
10
  ---
app.py CHANGED
@@ -46,7 +46,7 @@ def ui():
46
  """)
47
  prompt = gr.Textbox(lines=2, label="Prompt", value="smooth rhodes")
48
  with gr.Row():
49
- text_chords = gr.Textbox(lines=2, label="Text Chords: Single uppercase alphabet character(eg. `C`) is considered as a major chord. Chord attributes like(`maj`, `min`, `dim`, `aug`, `min6`, `maj6`, `min7`, `minmaj7`, `maj7`, `7`, `dim7`, `hdim7`, `sus2` and `sus4`) can be added to the root alphabet character after `:`.(eg. `A:min7`) Each chord token splitted by `SPACE` is allocated to a single bar. If more than one chord must be allocated to a single bar, cluster the chords adding with `,` without any `SPACE`.(eg. `C,C:7 G, E:min A:min`) You must choose either only one of `audio_chords` or `text_chords`.", value="C D:min7 G:7 A:min ")
50
  audio_chords = gr.File(label="Audio Chords", value=None)
51
  with gr.Row():
52
  bpm = gr.Number(label="BPM", value=120)
 
46
  """)
47
  prompt = gr.Textbox(lines=2, label="Prompt", value="smooth rhodes")
48
  with gr.Row():
49
+ text_chords = gr.Textbox(lines=2, value="C D:min7 G:7 A:min", label="Text Chords: Single uppercase alphabet character(eg. `C`) is considered as a major chord. Chord attributes like(`maj`, `min`, `dim`, `aug`, `min6`, `maj6`, `min7`, `minmaj7`, `maj7`, `7`, `dim7`, `hdim7`, `sus2` and `sus4`) can be added to the root alphabet character after `:`.(eg. `A:min7`) Each chord token splitted by `SPACE` is allocated to a single bar. If more than one chord must be allocated to a single bar, cluster the chords adding with `,` without any `SPACE`.(eg. `C,C:7 G, E:min A:min`) You must choose either only one of `audio_chords` or `text_chords`.")
50
  audio_chords = gr.File(label="Audio Chords", value=None)
51
  with gr.Row():
52
  bpm = gr.Number(label="BPM", value=120)