model: forward() is not abstract method

This commit is contained in:
2026-01-02 19:42:22 +01:00
parent c87b8f8ed0
commit 2e714685d1
-1
View File
@@ -27,7 +27,6 @@ class Model(ABC):
if train(entity, _batch, Status()):
_batch = entity.forward(_batch)
@abstractmethod
def forward(self, x: Mat) -> Mat:
pass