Spaces:
Running on Zero
Running on Zero
Vansh Chugh commited on
Commit ·
9e7aa57
1
Parent(s): db50e80
clearer info text for instruments and temperature controls
Browse files
app.py
CHANGED
|
@@ -128,7 +128,7 @@ with gr.Blocks() as demo:
|
|
| 128 |
gr.Textbox(
|
| 129 |
value="",
|
| 130 |
label="Instruments",
|
| 131 |
-
info=f"
|
| 132 |
),
|
| 133 |
gr.Checkbox(
|
| 134 |
label="Use Sampling",
|
|
@@ -140,7 +140,7 @@ with gr.Blocks() as demo:
|
|
| 140 |
step=0.1,
|
| 141 |
value=1.0,
|
| 142 |
label="Temperature",
|
| 143 |
-
info="Only used when Use Sampling is on (default: 1.0, per repo).",
|
| 144 |
),
|
| 145 |
]
|
| 146 |
output_components = [
|
|
|
|
| 128 |
gr.Textbox(
|
| 129 |
value="",
|
| 130 |
label="Instruments",
|
| 131 |
+
info=f"Separate names with commas. Leave blank to let the model detect instruments on its own. Valid names: {_VALID_INSTRUMENTS}.",
|
| 132 |
),
|
| 133 |
gr.Checkbox(
|
| 134 |
label="Use Sampling",
|
|
|
|
| 140 |
step=0.1,
|
| 141 |
value=1.0,
|
| 142 |
label="Temperature",
|
| 143 |
+
info="Only used when Use Sampling is on. Higher values = note choices are more varied and unpredictable. Lower values = values are closer to model's most confident guesses. (default: 1.0, per repo).",
|
| 144 |
),
|
| 145 |
]
|
| 146 |
output_components = [
|