mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2026-05-29 03:18:56 +08:00
[model] support qwen3.6 models (#10415)
Co-authored-by: frozenleaves <frozen@Mac.local>
This commit is contained in:
@@ -125,6 +125,10 @@ class DataArguments:
|
||||
default=True,
|
||||
metadata={"help": "Whether or not to enable thinking mode for reasoning models."},
|
||||
)
|
||||
preserve_thinking: bool = field(
|
||||
default=False,
|
||||
metadata={"help": "Whether or not to preserve thinking content in historical turns for reasoning models."},
|
||||
)
|
||||
tokenized_path: str | None = field(
|
||||
default=None,
|
||||
metadata={
|
||||
@@ -186,3 +190,4 @@ class DataArguments:
|
||||
|
||||
def to_dict(self) -> dict[str, Any]:
|
||||
return asdict(self)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user