advsecurenet.models.CustomModels package
advsecurenet.models.CustomModels.CustomCifar10Model module
- class advsecurenet.models.CustomModels.CustomCifar10Model.CustomCifar10Model(num_classes=10, num_input_channels=3, **kwargs)
Bases:
Module
- forward(x)
Define the computation performed at every call.
Should be overridden by all subclasses.
Note
Although the recipe for forward pass needs to be defined within this function, one should call the
Module
instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.
advsecurenet.models.CustomModels.CustomMnistModel module
- class advsecurenet.models.CustomModels.CustomMnistModel.CustomMnistModel(num_classes=10, num_input_channels=1, **kwargs)
Bases:
Module
Custom MNIST model with two convolutional layers and two fully connected layers.
- forward(x)
Define the computation performed at every call.
Should be overridden by all subclasses.
Note
Although the recipe for forward pass needs to be defined within this function, one should call the
Module
instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.