fixed imports

This commit is contained in:
2025-12-19 11:10:16 +01:00
parent a60f802443
commit cadbb34d1a
9 changed files with 28 additions and 28 deletions
+6 -6
View File
@@ -1,9 +1,9 @@
from params import EntityParams
from state import RbmState
from status import Status
from train import train
from entity import Entity
from matrix import Mat, np
from .params import EntityParams
from .state import RbmState
from .status import Status
from .train import train
from .entity import Entity
from .matrix import Mat, np
class Layer:
def __init__(self, name: str, shape: tuple[int, int, int, int], params: EntityParams):