Package org.jetbrains.kotlinx.dl.api.core.layer.pooling
Types
GlobalAvgPool1D
Link copied to clipboard
Global average pooling operation for temporal data. NOTE: Works with tensors which must have rank 3 (batch, steps, features). Input shape: 3D tensor with shape (batch_size, steps, features)
. Output shape: 2D tensor with shape (batch_size, features)
.
GlobalAvgPool2D
Link copied to clipboard
Global average pooling operation for 2D data (images and so on).
GlobalAvgPool3D
Link copied to clipboard
Global Average pooling operation for 3D data.
GlobalMaxPool1D
Link copied to clipboard
Global max pooling operation for 1D temporal data (e.g. audio, timeseries, etc.).
GlobalMaxPool2D
Link copied to clipboard
Global max pooling operation for 2D spatial data (e.g. images).
GlobalMaxPool3D
Link copied to clipboard
Global max pooling operation for 3D data (e.g. videos, spatio-temporal).
MaxPool3D
Link copied to clipboard