moe.py 2.97 KB
Newer Older
chenych's avatar
chenych committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright 2024 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.

from typing import TYPE_CHECKING, Sequence

import torch
from transformers.integrations import is_deepspeed_zero3_enabled
from transformers.utils.versions import require_version


if TYPE_CHECKING:
    from transformers import PretrainedConfig, PreTrainedModel

    from ...hparams import ModelArguments


def _set_z3_leaf_modules(model: "PreTrainedModel", leaf_modules: Sequence["torch.nn.Module"]) -> None:
    require_version("deepspeed>=0.13.0", "To fix: pip install deepspeed>=0.13.0")
    from deepspeed.utils import set_z3_leaf_modules  # type: ignore

    set_z3_leaf_modules(model, leaf_modules)


def add_z3_leaf_module(model: "PreTrainedModel") -> None:
    r"""
    Sets module as a leaf module to skip partitioning in deepspeed zero3.
    """
    if not is_deepspeed_zero3_enabled():
        return

luopl's avatar
luopl committed
42
43
    model_type = getattr(model.config, "model_type", None)
    if model_type == "dbrx":
chenych's avatar
chenych committed
44
45
46
47
        from transformers.models.dbrx.modeling_dbrx import DbrxFFN

        _set_z3_leaf_modules(model, [DbrxFFN])

luopl's avatar
luopl committed
48
    if model_type == "jamba":
chenych's avatar
chenych committed
49
50
51
52
        from transformers.models.jamba.modeling_jamba import JambaSparseMoeBlock

        _set_z3_leaf_modules(model, [JambaSparseMoeBlock])

luopl's avatar
luopl committed
53
    if model_type == "jetmoe":
chenych's avatar
chenych committed
54
55
56
57
        from transformers.models.jetmoe.modeling_jetmoe import JetMoeMoA, JetMoeMoE

        _set_z3_leaf_modules(model, [JetMoeMoA, JetMoeMoE])

luopl's avatar
luopl committed
58
    if model_type == "mixtral":
chenych's avatar
chenych committed
59
60
61
62
        from transformers.models.mixtral.modeling_mixtral import MixtralSparseMoeBlock

        _set_z3_leaf_modules(model, [MixtralSparseMoeBlock])

luopl's avatar
luopl committed
63
    if model_type == "qwen2moe":
chenych's avatar
chenych committed
64
65
66
67
68
69
        from transformers.models.qwen2_moe.modeling_qwen2_moe import Qwen2MoeSparseMoeBlock

        _set_z3_leaf_modules(model, [Qwen2MoeSparseMoeBlock])


def configure_moe(config: "PretrainedConfig", model_args: "ModelArguments", is_trainable: bool) -> None:
luopl's avatar
luopl committed
70
    model_type = getattr(config, "model_type", None)
chenych's avatar
chenych committed
71
    if model_args.moe_aux_loss_coef is not None:
luopl's avatar
luopl committed
72
        if model_type in ["jamba", "mixtral", "qwen2_moe"]:
chenych's avatar
chenych committed
73
74
            setattr(config, "router_aux_loss_coef", model_args.moe_aux_loss_coef)

luopl's avatar
luopl committed
75
        elif model_type == "deepseek":
chenych's avatar
chenych committed
76
77
            setattr(config, "aux_loss_alpha", model_args.moe_aux_loss_coef)

luopl's avatar
luopl committed
78
        elif model_type == "jetmoe":
chenych's avatar
chenych committed
79
80
            setattr(config, "aux_loss_coef", model_args.moe_aux_loss_coef)

luopl's avatar
luopl committed
81
    if model_type in ["dbrx", "jamba", "jetmoe", "mixtral", "qwen2_moe"]:
chenych's avatar
chenych committed
82
        setattr(config, "output_router_logits", is_trainable)