corrected imports

This commit is contained in:
Falko Victor Habel 2025-01-26 13:26:01 +01:00
parent 59b2784e92
commit 338ac5dee5
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,3 @@
# Import submodules
from .model import AIIA, AIIAEncoder
from .model import AIIA, AIIABase, AIIAchunked, AIIAExpert, AIIAmoe, AIIArecursive, AIIABaseShared
from .data import AIIADataLoader
from .model.config import AIIAConfig

View File

@ -1,2 +1,2 @@
from .config import AIIAConfig
from .Model import AIIA, AIIABase, AIIAchunked, AIIAExpert, AIIAmoe, AIIArecursive
from .Model import AIIA, AIIABase, AIIAchunked, AIIAExpert, AIIAmoe, AIIArecursive, AIIABaseShared