Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -363,6 +363,12 @@ with demo:
|
|
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",
|
|
|
363 |
label="Base Model Name",
|
364 |
interactive = True,
|
365 |
)
|
366 |
+
PEFT_model_name = gr.Dropdown(
|
367 |
+
choices=PEFT_MODEL_OPTIONS,
|
368 |
+
value=PEFT_MODEL_OPTIONS[0],
|
369 |
+
label="PEFT Model Name",
|
370 |
+
interactive = True,
|
371 |
+
)
|
372 |
with gr.Column(scale=0.5, variant="compact"):
|
373 |
finetune_button = gr.Button(
|
374 |
value="Finetune Pre-trained Model",
|