feat/smoe #34

Merged
Fabel merged 7 commits from feat/smoe into main 2025-03-28 15:48:40 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 1fcb31b044 - Show all commits

View File

@ -1,21 +1,21 @@
from .Model import (
AIIA,
AIIABase,
AIIABaseShared,
AIIAchunked,
AIIAExpert,
AIIAmoe,
AIIArecursive
AIIArecursive,
AIIASparseMoe
)
from .config import AIIAConfig
__all__ = [
"AIIA",
"AIIABase",
"AIIABaseShared",
"AIIAchunked",
"AIIAExpert",
"AIIAmoe",
"AIIArecursive",
"AIIAConfig"
"AIIAConfig",
"AIIASparseMoe"
]