feat/tf_support #37

Merged
Fabel merged 13 commits from feat/tf_support into develop 2025-04-16 20:59:48 +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",
]