Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -362,18 +362,19 @@ with demo:
|
|
362 |
value=MODEL_OPTIONS[0],
|
363 |
label="Base Model Name",
|
364 |
interactive = True,
|
365 |
-
)
|
|
|
366 |
finetune_button = gr.Button(
|
367 |
value="Finetune Pre-trained Model",
|
368 |
interactive=True,
|
369 |
variant="primary",
|
370 |
)
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
|
378 |
# "Finetune Pre-trained Model" actions
|
379 |
finetune_button.click(
|
|
|
362 |
value=MODEL_OPTIONS[0],
|
363 |
label="Base Model Name",
|
364 |
interactive = True,
|
365 |
+
)
|
366 |
+
with gr.Column(scale=0.5, variant="compact"):
|
367 |
finetune_button = gr.Button(
|
368 |
value="Finetune Pre-trained Model",
|
369 |
interactive=True,
|
370 |
variant="primary",
|
371 |
)
|
372 |
+
finetune_output_text = gr.Textbox(
|
373 |
+
lines=1,
|
374 |
+
max_lines=12,
|
375 |
+
label="Finetune Status",
|
376 |
+
placeholder="Finetune Status Shown Here",
|
377 |
+
)
|
378 |
|
379 |
# "Finetune Pre-trained Model" actions
|
380 |
finetune_button.click(
|