AvgPool2D Members

The AvgPool2D type exposes the following members.

Constructors


  Name Description
Public method AvgPool2D()()()()
Initializes a new instance of the AvgPool2D class.
Public method AvgPool2D(Tuple<(Of <<'(Int32, Int32>)>>), Tuple<(Of <<'(Int32, Int32>)>>), Boolean)
Initializes a new instance of the AvgPool2D class.

Methods


  Name Description
Public method Equals(System.Object) (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Properties


  Name Description
Public property Name
Gets or sets the name of the network layer
(Inherited from LayerConfig.)
Public property Padding
Boolean, if true results in padding the input such that the output has the same length as the original input.
Public property Params
Gets or sets the parameters.
(Inherited from LayerConfig.)
Public property PoolSize
integer or tuple of 2 integers, factors by which to downscale (vertical, horizontal). (2, 2) will halve the input in both spatial dimension. If only one integer is specified, the same window length will be used for both dimensions.
Public property Strides
Integer, tuple of 2 integers, or None. Strides values. If None, it will default to pool_size.