Update app.py
Browse files
app.py
CHANGED
|
@@ -547,7 +547,7 @@ with gr.Blocks() as demo:
|
|
| 547 |
|
| 548 |
gr.Markdown("## Key Features")
|
| 549 |
gr.Markdown("""
|
| 550 |
-
- **Efficient Architecture with RoPE**:
|
| 551 |
- **Extended Sequence Length**: 8k tokens that comfortably fit most music compositions and facilitate long-term music structure generation.
|
| 552 |
- **Premium Training Data**: Trained solely on the highest-quality MIDIs from the Godzilla MIDI dataset.
|
| 553 |
- **Optimized MIDI Encoding**: Extremely efficient MIDI representation using only 3 tokens per note and 7 tokens per tri-chord.
|
|
@@ -596,7 +596,7 @@ with gr.Blocks() as demo:
|
|
| 596 |
|
| 597 |
num_prime_tokens = gr.Slider(16, 6656, value=6656, step=1, label="Number of prime tokens")
|
| 598 |
num_gen_tokens = gr.Slider(16, 1024, value=512, step=1, label="Number of tokens to generate")
|
| 599 |
-
model_temperature = gr.Slider(0.1, 1, value=0.
|
| 600 |
model_top_p = gr.Slider(0.1, 1.0, value=0.96, step=0.01, label="Model sampling top p value")
|
| 601 |
add_drums = gr.Checkbox(value=False, label="Add drums")
|
| 602 |
add_outro = gr.Checkbox(value=False, label="Add an outro")
|
|
|
|
| 547 |
|
| 548 |
gr.Markdown("## Key Features")
|
| 549 |
gr.Markdown("""
|
| 550 |
+
- **Efficient Architecture with RoPE**: Large optimized 748M full attention autoregressive transformer with RoPE.
|
| 551 |
- **Extended Sequence Length**: 8k tokens that comfortably fit most music compositions and facilitate long-term music structure generation.
|
| 552 |
- **Premium Training Data**: Trained solely on the highest-quality MIDIs from the Godzilla MIDI dataset.
|
| 553 |
- **Optimized MIDI Encoding**: Extremely efficient MIDI representation using only 3 tokens per note and 7 tokens per tri-chord.
|
|
|
|
| 596 |
|
| 597 |
num_prime_tokens = gr.Slider(16, 6656, value=6656, step=1, label="Number of prime tokens")
|
| 598 |
num_gen_tokens = gr.Slider(16, 1024, value=512, step=1, label="Number of tokens to generate")
|
| 599 |
+
model_temperature = gr.Slider(0.1, 1, value=0.9, step=0.01, label="Model temperature")
|
| 600 |
model_top_p = gr.Slider(0.1, 1.0, value=0.96, step=0.01, label="Model sampling top p value")
|
| 601 |
add_drums = gr.Checkbox(value=False, label="Add drums")
|
| 602 |
add_outro = gr.Checkbox(value=False, label="Add an outro")
|