84 lines
2.7 KiB
Python
84 lines
2.7 KiB
Python
# Copyright (c) ModelScope Contributors. All rights reserved.
|
|
import gradio as gr
|
|
from functools import partial
|
|
from typing import Type
|
|
|
|
from swift.arguments import ExportArguments
|
|
from swift.model import ModelType, get_model_list
|
|
from swift.template import TEMPLATE_MAPPING
|
|
from ..base import BaseUI
|
|
|
|
|
|
class Model(BaseUI):
|
|
|
|
group = 'llm_export'
|
|
|
|
locale_dict = {
|
|
'checkpoint': {
|
|
'value': {
|
|
'zh': '训练后的模型',
|
|
'en': 'Trained model'
|
|
}
|
|
},
|
|
'model_type': {
|
|
'label': {
|
|
'zh': '选择模型类型',
|
|
'en': 'Select Model Type'
|
|
},
|
|
'info': {
|
|
'zh': 'SWIFT已支持的模型类型',
|
|
'en': 'Base model type supported by SWIFT'
|
|
}
|
|
},
|
|
'model': {
|
|
'label': {
|
|
'zh': '模型id或路径',
|
|
'en': 'Model id or path'
|
|
},
|
|
'info': {
|
|
'zh': '实际的模型id,如果是训练后的模型请填入checkpoint-xxx的目录',
|
|
'en': 'The actual model id or path, if is a trained model, please fill in the checkpoint-xxx dir'
|
|
}
|
|
},
|
|
'reset': {
|
|
'value': {
|
|
'zh': '恢复初始值',
|
|
'en': 'Reset to default'
|
|
},
|
|
},
|
|
'template': {
|
|
'label': {
|
|
'zh': '模型Prompt模板类型',
|
|
'en': 'Prompt template type'
|
|
},
|
|
'info': {
|
|
'zh': '选择匹配模型的Prompt模板',
|
|
'en': 'Choose the template type of the model'
|
|
}
|
|
},
|
|
}
|
|
|
|
ignored_models = ['int1', 'int2', 'int4', 'int8', 'awq', 'gptq', 'bnb', 'eetq', 'aqlm', 'hqq']
|
|
|
|
@classmethod
|
|
def do_build_ui(cls, base_tab: Type['BaseUI']):
|
|
with gr.Row():
|
|
all_models = [
|
|
model for model in get_model_list() if not any([ignored in model for ignored in cls.ignored_models])
|
|
]
|
|
gr.Dropdown(
|
|
elem_id='model',
|
|
scale=20,
|
|
choices=all_models,
|
|
value='Qwen/Qwen2.5-7B-Instruct',
|
|
allow_custom_value=True)
|
|
gr.Dropdown(elem_id='model_type', choices=ModelType.get_model_name_list(), scale=20)
|
|
gr.Dropdown(elem_id='template', choices=list(TEMPLATE_MAPPING.keys()), scale=20)
|
|
|
|
@classmethod
|
|
def after_build_ui(cls, base_tab: Type['BaseUI']):
|
|
cls.element('model').change(
|
|
partial(cls.update_input_model, arg_cls=ExportArguments, has_record=False),
|
|
inputs=[cls.element('model')],
|
|
outputs=list(cls.valid_elements().values()))
|