DeepLearning/MaxPoolLayer - Maple Help

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : DeepLearning/MaxPoolLayer

DeepLearning

  

MaxPoolLayer

  

create max pool layer

 

Calling Sequence

Parameters

Description

Details

Compatibility

Calling Sequence

MaxPoolLayer(poolsize,opts)

Parameters

poolsize

-

list of positive integers

opts

-

(optional) one or more keyword options described below

Description

• 

MaxPoolLayer(poolsize,opts) creates a max pool layer with the pool size specified by poolsize.

• 

This function is part of the DeepLearning package, so it can be used in the short form MaxPoolLayer(..) only after executing the command with(DeepLearning). However, it can always be accessed through the long form of the command by using DeepLearning[MaxPoolLayer](..).

Details

• 

The implementation of MaxPoolLayer uses tf.keras.layers.MaxPool1D, tf.keras.layers.MaxPool2D, and tf.keras.layers.MaxPool3D from the TensorFlow Python API. Consult the TensorFlow Python API documentation for tf.keras.layers for more information.

Compatibility

• 

The DeepLearning[MaxPoolLayer] command was introduced in Maple 2021.

• 

For more information on Maple 2021 changes, see Updates in Maple 2021.

See Also

DeepLearning Overview