| |
| from typing import Type |
|
|
| import gradio as gr |
|
|
| from swift.ui.base import BaseUI |
|
|
|
|
| class LoRA(BaseUI): |
|
|
| group = 'llm_train' |
|
|
| locale_dict = { |
| 'lora_tab': { |
| 'label': { |
| 'zh': 'LoRA参数设置', |
| 'en': 'LoRA settings' |
| }, |
| }, |
| 'target_modules': { |
| 'label': { |
| 'zh': 'LoRA目标模块', |
| 'en': 'LoRA target modules' |
| }, |
| 'info': { |
| 'zh': '设置LoRA目标模块,如训练所有Linear请改为`all-linear`', |
| 'en': 'Set the LoRA target modules, fill in `all-linear` if train all Linears' |
| } |
| }, |
| 'lora_rank': { |
| 'label': { |
| 'zh': 'LoRA的秩', |
| 'en': 'The LoRA rank' |
| } |
| }, |
| 'lora_alpha': { |
| 'label': { |
| 'zh': 'LoRA的alpha', |
| 'en': 'The LoRA alpha' |
| } |
| }, |
| 'lora_dropout': { |
| 'label': { |
| 'zh': 'LoRA的dropout', |
| 'en': 'The LoRA dropout' |
| } |
| }, |
| 'use_rslora': { |
| 'label': { |
| 'zh': '使用rslora', |
| 'en': 'Use rslora' |
| } |
| }, |
| 'use_dora': { |
| 'label': { |
| 'zh': '使用dora', |
| 'en': 'Use dora' |
| } |
| }, |
| 'lora_dtype': { |
| 'label': { |
| 'zh': 'lora部分的参数类型', |
| 'en': 'The dtype of lora parameters' |
| } |
| }, |
| 'init_weights': { |
| 'label': { |
| 'zh': 'lora初始化方法', |
| 'en': 'init lora weights' |
| }, |
| 'info': { |
| 'zh': 'gaussian/pissa/pissa_niter_[n]/olora/loftq/true/false', |
| 'en': 'gaussian/pissa/pissa_niter_[n]/olora/loftq/true/false', |
| } |
| }, |
| 'lorap_lr_ratio': { |
| 'label': { |
| 'zh': 'Lora+学习率倍率', |
| 'en': 'The lr ratio of Lora+' |
| }, |
| 'info': { |
| 'zh': '建议值16.0', |
| 'en': 'Suggested value: 16.0' |
| } |
| }, |
| } |
|
|
| @classmethod |
| def do_build_ui(cls, base_tab: Type['BaseUI']): |
| with gr.Accordion(elem_id='lora_tab', open=True): |
| with gr.Blocks(): |
| with gr.Row(): |
| gr.Textbox(elem_id='target_modules', lines=1, scale=5, value='all-linear', is_list=True) |
| gr.Slider(elem_id='lora_rank', value=8, minimum=1, maximum=512, step=8, scale=2) |
| gr.Slider(elem_id='lora_alpha', value=32, minimum=1, maximum=512, step=8, scale=2) |
| gr.Textbox(elem_id='lora_dropout', scale=2) |
| with gr.Row(): |
| gr.Dropdown(elem_id='lora_dtype', scale=2, value=None) |
| gr.Textbox(elem_id='lorap_lr_ratio', scale=2) |
| gr.Checkbox(elem_id='use_rslora', scale=2) |
| gr.Checkbox(elem_id='use_dora', scale=2) |
| gr.Textbox(elem_id='init_weights', scale=4) |
|
|