updated init to remove expeort model and move the smoe higher
Gitea Actions For AIIA / Explore-Gitea-Actions (push) Failing after 31s Details

This commit is contained in:
Falko Victor Habel 2025-03-26 21:57:17 +01:00
parent 458d78a23e
commit 5987a130f6
2 changed files with 5 additions and 6 deletions

View File

@ -1,4 +1,4 @@
from .model.Model import AIIABase, AIIABaseShared, AIIAchunked, AIIAExpert, AIIAmoe, AIIArecursive, AIIASparseMoe
from .model.Model import AIIABase, AIIABaseShared, AIIAchunked, AIIAmoe, AIIASparseMoe, AIIArecursive
from .model.config import AIIAConfig
from .data.DataLoader import DataLoader
from .pretrain.pretrainer import Pretrainer, ProjectionHead

View File

@ -2,10 +2,9 @@ from .Model import (
AIIABase,
AIIABaseShared,
AIIAchunked,
AIIAExpert,
AIIAmoe,
AIIArecursive,
AIIASparseMoe
AIIASparseMoe,
AIIArecursive
)
from .config import AIIAConfig
@ -13,9 +12,9 @@ __all__ = [
"AIIABase",
"AIIABaseShared",
"AIIAchunked",
"AIIAExpert",
"AIIAmoe",
"AIIASparseMoe",
"AIIArecursive",
"AIIAConfig",
"AIIASparseMoe"
]