Class

org.apache.mxnet.javaapi

PoolingParam

Related Doc: package javaapi

Permalink

class PoolingParam extends AnyRef

This Param Object is specifically used for Pooling

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PoolingParam
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PoolingParam(data: NDArray)

    Permalink

    data

    Input data to the pooling operator.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def getCount_include_pad(): Boolean

    Permalink
  11. def getCudnn_off(): Boolean

    Permalink
  12. def getData(): NDArray

    Permalink
  13. def getGlobal_pool(): Boolean

    Permalink
  14. def getKernel(): Shape

    Permalink
  15. def getLayout(): String

    Permalink
  16. def getOut(): mxnet.NDArray

    Permalink
  17. def getP_value(): Integer

    Permalink
  18. def getPad(): Shape

    Permalink
  19. def getPool_type(): String

    Permalink
  20. def getPooling_convention(): String

    Permalink
  21. def getStride(): Shape

    Permalink
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def setCount_include_pad(count_include_pad: Boolean): PoolingParam

    Permalink

    count_include_pad

    Only used for AvgPool, specify whether to count padding elements for averagecalculation. For example, with a 5*5 kernel on a 3*3 corner of a image,the sum of the 9 valid elements will be divided by 25 if this is set to true,or it will be divided by 9 if this is set to false. Defaults to true.

  28. def setCudnn_off(cudnn_off: Boolean): PoolingParam

    Permalink

    cudnn_off

    Turn off cudnn pooling and use MXNet pooling operator.

  29. def setGlobal_pool(global_pool: Boolean): PoolingParam

    Permalink

    global_pool

    Ignore kernel size, do global pooling based on current input feature map.

  30. def setKernel(kernel: Shape): PoolingParam

    Permalink

    kernel

    Pooling kernel size: (y, x) or (d, y, x)

  31. def setLayout(layout: String): PoolingParam

    Permalink

    layout

    Set layout for input and output. Empty for default layout: NCW for 1d, NCHW for 2d and NCDHW for 3d.

  32. def setOut(out: NDArray): PoolingParam

    Permalink
  33. def setP_value(p_value: Integer): PoolingParam

    Permalink

    p_value

    Value of p for Lp pooling, can be 1 or 2, required for Lp Pooling.

  34. def setPad(pad: Shape): PoolingParam

    Permalink

    pad

    Pad for pooling: (y, x) or (d, y, x). Defaults to no padding.

  35. def setPool_type(pool_type: String): PoolingParam

    Permalink

    pool_type

    Pooling type to be applied.

  36. def setPooling_convention(pooling_convention: String): PoolingParam

    Permalink

    pooling_convention

    Pooling convention to be applied.

  37. def setStride(stride: Shape): PoolingParam

    Permalink

    stride

    Stride: for pooling (y, x) or (d, y, x). Defaults to 1 for each dimension.

  38. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  39. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  40. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped