10 lines
210 B
Python
10 lines
210 B
Python
from dataclasses import dataclass
|
|
|
|
from .sft_args import MegatronSftArguments
|
|
|
|
|
|
@dataclass
|
|
class MegatronPretrainArguments(MegatronSftArguments):
|
|
use_chat_template: bool = False
|
|
loss_scale: str = 'all'
|