develop #41

Merged
Fabel merged 27 commits from develop into main 2025-04-17 17:08:57 +00:00
2 changed files with 1 additions and 6 deletions
Showing only changes of commit 30695154b4 - Show all commits

View File

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

View File

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