wangjin2000 commited on
Commit
075739f
·
verified ·
1 Parent(s): caa306e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -7
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
- finetune_output_text = gr.Textbox(
372
- lines=1,
373
- max_lines=12,
374
- label="Finetune Status",
375
- placeholder="Finetune Status Shown Here",
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(