Spaces:
Runtime error
Runtime error
zetavg
commited on
Commit
•
36b4c98
1
Parent(s):
42c2f04
update ui
Browse files
llama_lora/ui/finetune_ui.py
CHANGED
@@ -723,11 +723,13 @@ def finetune_ui():
|
|
723 |
label="LoRA Target Modules",
|
724 |
choices=["q_proj", "k_proj", "v_proj", "o_proj"],
|
725 |
value=["q_proj", "v_proj"],
|
|
|
726 |
)
|
727 |
|
728 |
with gr.Column():
|
729 |
model_name = gr.Textbox(
|
730 |
lines=1, label="LoRA Model Name", value=random_name,
|
|
|
731 |
elem_id="finetune_model_name",
|
732 |
)
|
733 |
|
|
|
723 |
label="LoRA Target Modules",
|
724 |
choices=["q_proj", "k_proj", "v_proj", "o_proj"],
|
725 |
value=["q_proj", "v_proj"],
|
726 |
+
info="Modules to replace with LoRA."
|
727 |
)
|
728 |
|
729 |
with gr.Column():
|
730 |
model_name = gr.Textbox(
|
731 |
lines=1, label="LoRA Model Name", value=random_name,
|
732 |
+
info="The name of the new LoRA model.",
|
733 |
elem_id="finetune_model_name",
|
734 |
)
|
735 |
|