| |
| import ast |
| import math |
| import os |
| from dataclasses import dataclass, field |
| from typing import Any, Dict, Literal, Optional, Union |
|
|
| import json |
| import torch |
| from transformers.utils import is_torch_mps_available |
|
|
| from swift.llm import MODEL_MAPPING, HfConfigFactory, get_model_info_meta, get_model_name |
| from swift.utils import get_dist_setting, get_logger |
|
|
| logger = get_logger() |
|
|
|
|
| @dataclass |
| class ModelArguments: |
| """ |
| ModelArguments class is a dataclass that holds various arguments related to model configuration and usage. |
| |
| Args: |
| model (Optional[str]): model_id or model_path. Default is None. |
| model_type (Optional[str]): Type of the model group. Default is None. |
| model_revision (Optional[str]): Revision of the model. Default is None. |
| torch_dtype (Literal): Model parameter dtype. Default is None. |
| attn_impl (Literal): Attention implementation to use. Default is None. |
| num_labels (Optional[int]): Number of labels for classification tasks. Default is None. |
| rope_scaling (Literal): Type of rope scaling to use. Default is None. |
| device_map (Optional[str]): Configuration for device mapping. Default is None. |
| local_repo_path (Optional[str]): Path to the local github repository for model. Default is None. |
| init_strategy (Literal): Strategy to initialize all uninitialized parameters. Default is None. |
| """ |
| model: Optional[str] = None |
| model_type: Optional[str] = field( |
| default=None, metadata={'help': f'model_type choices: {list(MODEL_MAPPING.keys())}'}) |
| model_revision: Optional[str] = None |
| task_type: Literal['causal_lm', 'seq_cls', 'embedding'] = None |
|
|
| torch_dtype: Literal['bfloat16', 'float16', 'float32', None] = None |
| |
| |
| attn_impl: Literal['flash_attn', 'sdpa', 'eager', 'flex_attention', None] = None |
|
|
| num_labels: Optional[int] = None |
| problem_type: Literal['regression', 'single_label_classification', 'multi_label_classification'] = None |
| rope_scaling: Literal['linear', 'dynamic'] = None |
| device_map: Optional[Union[dict, str]] = None |
| max_memory: Optional[Union[dict, str]] = None |
| |
| |
| local_repo_path: Optional[str] = None |
| init_strategy: Literal['zero', 'uniform', 'normal', 'xavier_uniform', 'xavier_normal', 'kaiming_uniform', |
| 'kaiming_normal', 'orthogonal'] = None |
|
|
| @staticmethod |
| def parse_to_dict(value: Union[str, Dict, None], strict: bool = True) -> Union[str, Dict]: |
| """Convert a JSON string or JSON file into a dict""" |
| |
| if value is None: |
| value = {} |
| elif isinstance(value, str): |
| if os.path.exists(value): |
| with open(value, 'r', encoding='utf-8') as f: |
| value = json.load(f) |
| else: |
| try: |
| value = json.loads(value) |
| except json.JSONDecodeError: |
| if strict: |
| logger.error(f"Unable to parse string: '{value}'") |
| raise |
| return value |
|
|
| def _init_device_map(self): |
| """Prepare device map args""" |
| if self.device_map: |
| self.device_map: Union[str, Dict[str, Any], None] = self.parse_to_dict(self.device_map, strict=False) |
| |
| _, local_rank, _, local_world_size = get_dist_setting() |
| if local_world_size > 1 and isinstance(self.device_map, dict) and local_rank > 0: |
| for k, v in self.device_map.items(): |
| if isinstance(v, int): |
| self.device_map[k] += local_rank |
|
|
| def _init_max_memory(self): |
| if isinstance(self.max_memory, str): |
| try: |
| self.max_memory = ast.literal_eval(self.max_memory) |
| except Exception: |
| pass |
| self.max_memory = self.parse_to_dict(self.max_memory) |
| |
| _, local_rank, _, local_world_size = get_dist_setting() |
| if local_world_size > 1 and isinstance(self.max_memory, dict) and local_rank > 0: |
| for k in list(self.max_memory.keys()): |
| if isinstance(k, int): |
| self.max_memory[k + local_rank] = self.max_memory.pop(k) |
|
|
| def _init_torch_dtype(self) -> None: |
| """"If torch_dtype is None, find a proper dtype by the train_type/GPU""" |
| from swift.llm import TrainArguments |
|
|
| self.torch_dtype: Optional[torch.dtype] = HfConfigFactory.to_torch_dtype(self.torch_dtype) |
| self.torch_dtype: torch.dtype = self._init_model_info() |
| |
| if isinstance(self, TrainArguments): |
| self._init_mixed_precision() |
|
|
| def _init_mixed_precision(self): |
| if is_torch_mps_available(): |
| fp16, bf16 = False, False |
| elif self.torch_dtype in {torch.float16, torch.float32}: |
| fp16, bf16 = True, False |
| elif self.torch_dtype == torch.bfloat16: |
| fp16, bf16 = False, True |
| else: |
| raise ValueError(f'args.torch_dtype: {self.torch_dtype}') |
| if self.fp16 is None: |
| self.fp16 = fp16 |
| if self.bf16 is None: |
| self.bf16 = bf16 |
|
|
| def _init_rope_scaling(self): |
| assert self.max_length is not None, 'Use max_model_len together with rope_scaling' |
| rope_scaling = self.model_info.rope_scaling or {} |
| max_model_len = self.model_info.max_model_len |
| rope_scaling_factor = 1.0 |
| if max_model_len: |
| rope_scaling_factor = max(float(math.ceil(self.max_length / max_model_len)), 1.0) |
| if rope_scaling: |
| rope_scaling_factor = max(rope_scaling.get('factor', -1), rope_scaling_factor) |
| rope_scaling['type'] = self.rope_scaling |
| rope_scaling['factor'] = rope_scaling_factor |
| else: |
| rope_scaling = {'type': self.rope_scaling, 'factor': rope_scaling_factor} |
| self.rope_scaling = rope_scaling |
| logger.info(f'rope_scaling is set to type: {self.rope_scaling}') |
|
|
| def _init_model_info(self) -> torch.dtype: |
| self.model_info, self.model_meta = get_model_info_meta(**self.get_model_kwargs()) |
| self.task_type = self.model_info.task_type |
| self.num_labels = self.model_info.num_labels |
|
|
| self.model_dir = self.model_info.model_dir |
| self.model_type = self.model_info.model_type |
| if isinstance(self.rope_scaling, str): |
| self._init_rope_scaling() |
| return self.model_info.torch_dtype |
|
|
| def __post_init__(self): |
| if self.model is None: |
| raise ValueError(f'Please set --model <model_id_or_path>`, model: {self.model}') |
| self.model_suffix = get_model_name(self.model) |
| self._init_device_map() |
| self._init_max_memory() |
| self._init_torch_dtype() |
|
|
| def get_model_kwargs(self): |
| return { |
| 'model_id_or_path': self.model, |
| 'torch_dtype': self.torch_dtype, |
| 'model_type': self.model_type, |
| 'revision': self.model_revision, |
| 'use_hf': self.use_hf, |
| 'hub_token': self.hub_token, |
| 'local_repo_path': self.local_repo_path, |
| 'device_map': self.device_map, |
| 'max_memory': self.max_memory, |
| 'quantization_config': self.get_quantization_config(), |
| 'attn_impl': self.attn_impl, |
| 'rope_scaling': self.rope_scaling, |
| 'task_type': self.task_type, |
| 'num_labels': self.num_labels, |
| 'problem_type': self.problem_type, |
| 'init_strategy': self.init_strategy, |
| } |
|
|