mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
389 B
9 lines
389 B
from .experts import Experts, FFNExperts, TPExperts
|
|
from .layers import MoeLayer, Top1Router, Top2Router, MoeModule
|
|
from .utils import NormalNoiseGenerator, UniformNoiseGenerator, build_ffn_experts
|
|
|
|
__all__ = [
|
|
'Experts', 'FFNExperts', 'TPExperts', 'Top1Router', 'Top2Router', 'MoeLayer', 'NormalNoiseGenerator',
|
|
'UniformNoiseGenerator', 'build_ffn_experts', 'MoeModule'
|
|
]
|