mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-12-27 09:10:35 +08:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: hiyouga <16256802+hiyouga@users.noreply.github.com> Co-authored-by: hiyouga <hiyouga@buaa.edu.cn>
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
# Copyright 2025 the LlamaFactory team.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import os
|
|
from dataclasses import dataclass, field
|
|
from uuid import uuid4
|
|
|
|
from .arg_utils import PluginConfig, get_plugin_config
|
|
|
|
|
|
@dataclass
|
|
class TrainingArguments:
|
|
output_dir: str = field(
|
|
default=os.path.join("outputs", str(uuid4())),
|
|
metadata={"help": "Path to the output directory."},
|
|
)
|
|
micro_batch_size: int = field(
|
|
default=1,
|
|
metadata={"help": "Micro batch size for training."},
|
|
)
|
|
global_batch_size: int = field(
|
|
default=1,
|
|
metadata={"help": "Global batch size for training."},
|
|
)
|
|
learning_rate: float = field(
|
|
default=1e-4,
|
|
metadata={"help": "Learning rate for training."},
|
|
)
|
|
bf16: bool = field(
|
|
default=False,
|
|
metadata={"help": "Use bf16 for training."},
|
|
)
|
|
dist_config: PluginConfig | None = field(
|
|
default=None,
|
|
metadata={"help": "Distribution configuration for training."},
|
|
)
|
|
|
|
def __post_init__(self) -> None:
|
|
self.dist_config = get_plugin_config(self.dist_config)
|