Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/mcore_bridge/config/model_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ class ModelConfig(TransformerConfig):
moe_router_bias_update_rate: float = 1e-3
moe_router_enable_expert_bias: bool = False
moe_router_topk_scaling_factor: Optional[float] = None
moe_router_load_balancing_type: Literal['aux_loss', 'seq_aux_loss', 'global_aux_loss', 'sinkhorn',
'none'] = 'aux_loss'
# 'aux_loss', 'seq_aux_loss', 'global_aux_loss', 'sinkhorn', 'none'
moe_router_load_balancing_type: Union[str, List[str]] = 'aux_loss'
moe_shared_expert_gate: bool = False

# mla
Expand Down
Loading