Architectures module
|
Returns simple architecture with single Fully Connected layer and Relu activatation. |
|
Returns architecture based on research in OSRCI method. |
|
Returns modified architecture based on AlexNet, suitable for size (32 x 32 x 3) images. |
- torchosr.architectures.alexNet32_lower_stack(n_out_channels)
Returns modified architecture based on AlexNet, suitable for size (32 x 32 x 3) images.
- Parameters:
n_out_channels (int) – Size output
- Return type:
torch.nn.Sequential
- Returns:
Lower stack sequential architecture
- torchosr.architectures.fc_lower_stack(depth, img_size_x, n_out_channels)
Returns simple architecture with single Fully Connected layer and Relu activatation.
- torchosr.architectures.osrci_lower_stack(depth, img_size_x, n_out_channels)
Returns architecture based on research in OSRCI method.