We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fcedfb commit 1015494Copy full SHA for 1015494
2 files changed
tuning/config/acceleration_configs/mcp.py
@@ -32,7 +32,7 @@ class MCP:
32
@dataclass
33
class MCPConfig:
34
35
- cp: MCP = None
+ mcp: MCP = None
36
37
def __post_init__(self):
38
# ensure nested dataclasses initialized
tuning/sft_trainer.py
@@ -200,7 +200,7 @@ def train(
200
)
201
if fast_moe_config is not None and fast_moe_config.fast_moe is None:
202
fast_moe_config = None
203
- if mcp_config is not None and mcp_config.cp is None:
+ if mcp_config is not None and mcp_config.mcp is None:
204
mcp_config = None
205
if fast_moe_config is not None:
206
# If LoRA with ScatterMoE detected, raise warning
0 commit comments