This commit is contained in:
RobinMeersman 2025-12-13 15:19:58 +01:00
parent 41d22d9dd5
commit 6e591bb470
3 changed files with 13 additions and 8 deletions

View file

@ -1,8 +1,10 @@
from .Model import Model
from .autoencoder import AutoEncoder
from .cnn import CNNPredictor
from .transformer import ByteTransformer
model_called: dict[str, type[Model]] = {
'cnn': CNNPredictor,
'transformer': ByteTransformer
'transformer': ByteTransformer,
'autoencoder': AutoEncoder
}