com.intel.analytics.bigdl.nn

SpatialConvolution

class SpatialConvolution[T] extends TensorModule[T]

Applies a 2D convolution over an input image composed of several input planes. The input tensor in forward(input) is expected to be a 3D tensor (nInputPlane x height x width).

Annotations
@SerialVersionUID( 8446523046224797382L )
Linear Supertypes
TensorModule[T], AbstractModule[Tensor[T], Tensor[T], T], Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SpatialConvolution
  2. TensorModule
  3. AbstractModule
  4. Serializable
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SpatialConvolution(nInputPlane: Int, nOutputPlane: Int, kernelW: Int, kernelH: Int, strideW: Int = 1, strideH: Int = 1, padW: Int = 0, padH: Int = 0, nGroup: Int = 1, propagateBack: Boolean = true, initMethod: InitializationMethod = Default)(implicit arg0: ClassTag[T], ev: TensorNumeric[T])

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val _1x1: Boolean

    Attributes
    protected
  7. def accGradParameters(input: Tensor[T], gradOutput: Tensor[T], scale: Double = 1.0): Unit

    Computing the gradient of the module with respect to its own parameters.

    Computing the gradient of the module with respect to its own parameters. Many modules do not perform this step as they do not have any parameters. The state variable name for the parameters is module dependent. The module is expected to accumulate the gradients with respect to the parameters in some variable.

    input
    gradOutput
    scale

    Definition Classes
    SpatialConvolutionAbstractModule
  8. def accGradParametersFrame(gradOutput: Tensor[T], gradWeight: Tensor[T], gradBias: Tensor[T], fInput: Tensor[T], scale: T)(implicit ev: TensorNumeric[T]): Unit

    Attributes
    protected
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def backward(input: Tensor[T], gradOutput: Tensor[T]): Tensor[T]

    Performs a back-propagation step through the module, with respect to the given input.

    Performs a back-propagation step through the module, with respect to the given input. In general this method makes the assumption forward(input) has been called before, with the same input. This is necessary for optimization reasons. If you do not respect this rule, backward() will compute incorrect gradients.

    input

    input data

    gradOutput

    gradient of next layer

    returns

    gradient corresponding to input data

    Definition Classes
    AbstractModule
  11. var backwardTime: Long

    Attributes
    protected
    Definition Classes
    AbstractModule
  12. val bias: Tensor[T]

  13. def calcGradParametersFrame(gradOutput: Tensor[T], gradWeight: Tensor[T], gradBias: Tensor[T], fInput: Tensor[T], scale: T)(implicit ev: TensorNumeric[T]): Unit

    Attributes
    protected
  14. def canEqual(other: Any): Boolean

    Definition Classes
    AbstractModule
  15. def checkEngineType(): SpatialConvolution.this.type

    get execution engine type

    get execution engine type

    Definition Classes
    AbstractModule
  16. def clearState(): SpatialConvolution.this.type

    Clear cached activities to save storage space or network bandwidth.

    Clear cached activities to save storage space or network bandwidth. Note that we use Tensor.set to keep some information like tensor share

    The subclass should override this method if it allocate some extra resource, and call the super.clearState in the override method

    returns

    Definition Classes
    SpatialConvolutionAbstractModule
  17. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. def cloneModule(): AbstractModule[Tensor[T], Tensor[T], T]

    Definition Classes
    AbstractModule
  19. var col2imTime: Long

    Attributes
    protected
  20. def copyStatus(src: Module[T]): SpatialConvolution.this.type

    Copy the useful running status from src to this.

    Copy the useful running status from src to this.

    The subclass should override this method if it has some parameters besides weight and bias. Such as runningMean and runningVar of BatchNormalization.

    src

    source Module

    returns

    this

    Definition Classes
    AbstractModule
  21. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. def equals(obj: Any): Boolean

    Definition Classes
    SpatialConvolutionAbstractModule → AnyRef → Any
  23. def evaluate(): SpatialConvolution.this.type

    Definition Classes
    AbstractModule
  24. var fGradInput: Tensor[T]

  25. var fInput: Tensor[T]

  26. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. final def forward(input: Tensor[T]): Tensor[T]

    Takes an input object, and computes the corresponding output of the module.

    Takes an input object, and computes the corresponding output of the module. After a forward, the output state variable should have been updated to the new value.

    input

    input data

    returns

    output data

    Definition Classes
    AbstractModule
  28. var forwardTime: Long

    Attributes
    protected
    Definition Classes
    AbstractModule
  29. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  30. def getCol2ImgTime(): Double

  31. def getIm2ColTime(): Double

  32. def getName(): String

    Get the module name, default name is className@namePostfix

    Get the module name, default name is className@namePostfix

    returns

    Definition Classes
    AbstractModule
  33. def getNumericType(): TensorDataType

    returns

    Float or Double

    Definition Classes
    AbstractModule
  34. def getParameters(): (Tensor[T], Tensor[T])

    This method compact all parameters and gradients of the model into two tensors.

    This method compact all parameters and gradients of the model into two tensors. So it's easier to use optim method

    returns

    Definition Classes
    AbstractModule
  35. def getParametersTable(): Table

    This function returns a table contains ModuleName, the parameter names and parameter value in this module.

    This function returns a table contains ModuleName, the parameter names and parameter value in this module. The result table is a structure of Table(ModuleName -> Table(ParameterName -> ParameterValue)), and the type is Table[String, Table[String, Tensor[T]]].

    For example, get the weight of a module named conv1: table[Table]("conv1")[Tensor[T]]("weight").

    Custom modules should override this function if they have parameters.

    returns

    Table

    Definition Classes
    SpatialConvolutionAbstractModule
  36. def getTimes(): Array[(AbstractModule[_ <: Activity, _ <: Activity, T], Long, Long)]

    Definition Classes
    AbstractModule
  37. val gradBias: Tensor[T]

  38. var gradInput: Tensor[T]

    The cached gradient of activities.

    The cached gradient of activities. So we don't compute it again when need it

    Definition Classes
    AbstractModule
  39. val gradWeight: Tensor[T]

  40. var gradWeightMM: Tensor[T]

    Attributes
    protected
  41. var gradWeightMMInBatch: Tensor[T]

    Attributes
    protected
  42. var gradientBiasMT: Tensor[T]

    Attributes
    protected
  43. def hashCode(): Int

    Definition Classes
    SpatialConvolutionAbstractModule → AnyRef → Any
  44. var im2colTime: Long

    Attributes
    protected
  45. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  46. final def isTraining(): Boolean

    Definition Classes
    AbstractModule
  47. val kernelH: Int

  48. val kernelW: Int

  49. var line: String

    Attributes
    protected
    Definition Classes
    AbstractModule
  50. val nGroup: Int

  51. val nInputPlane: Int

  52. val nOutputPlane: Int

  53. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  54. final def notify(): Unit

    Definition Classes
    AnyRef
  55. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  56. val ones: Tensor[T]

    Attributes
    protected
  57. val onesBatch: Tensor[T]

    Attributes
    protected
  58. val onesBias: Tensor[T]

    Attributes
    protected
  59. var output: Tensor[T]

    The cached output.

    The cached output. So we don't compute it again when need it

    Definition Classes
    AbstractModule
  60. val padH: Int

  61. val padW: Int

  62. def parameters(): (Array[Tensor[T]], Array[Tensor[T]])

    This function returns two arrays.

    This function returns two arrays. One for the weights and the other the gradients Custom modules should override this function if they have parameters

    returns

    (Array of weights, Array of grad)

    Definition Classes
    SpatialConvolutionAbstractModule
  63. def predict(dataset: RDD[Sample[T]]): RDD[Activity]

    module predict, return the probability distribution

    module predict, return the probability distribution

    dataset

    dataset for prediction

    Definition Classes
    AbstractModule
  64. def predictClass(dataset: RDD[Sample[T]]): RDD[Int]

    module predict, return the predict label

    module predict, return the predict label

    dataset

    dataset for prediction

    Definition Classes
    AbstractModule
  65. val propagateBack: Boolean

  66. def reset(): Unit

    Definition Classes
    SpatialConvolutionAbstractModule
  67. def resetTimes(): Unit

    Definition Classes
    AbstractModule
  68. var results: Array[Future[Unit]]

    Attributes
    protected
  69. def save(path: String, overWrite: Boolean = false): SpatialConvolution.this.type

    Definition Classes
    AbstractModule
  70. def saveTorch(path: String, overWrite: Boolean = false): SpatialConvolution.this.type

    Definition Classes
    AbstractModule
  71. def setInitMethod(initMethod: InitializationMethod): SpatialConvolution.this.type

  72. def setLine(line: String): SpatialConvolution.this.type

    Definition Classes
    AbstractModule
  73. def setName(name: String): SpatialConvolution.this.type

    Set the module name

    Set the module name

    name
    returns

    Definition Classes
    AbstractModule
  74. val strideH: Int

  75. val strideW: Int

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

    Definition Classes
    AnyRef
  77. def toString(): String

    Definition Classes
    SpatialConvolution → AnyRef → Any
  78. var train: Boolean

    Module status.

    Module status. It is useful for modules like dropout/batch normalization

    Attributes
    protected
    Definition Classes
    AbstractModule
  79. def training(): SpatialConvolution.this.type

    Definition Classes
    AbstractModule
  80. def updateGradInput(input: Tensor[T], gradOutput: Tensor[T]): Tensor[T]

    Computing the gradient of the module with respect to its own input.

    Computing the gradient of the module with respect to its own input. This is returned in gradInput. Also, the gradInput state variable is updated accordingly.

    input
    gradOutput
    returns

    Definition Classes
    SpatialConvolutionAbstractModule
  81. def updateGradInputFrame(gradInput: Tensor[T], gradOutput: Tensor[T], weight: Tensor[T], fgradInput: Tensor[T], kW: Int, kH: Int, dW: Int, dH: Int, padW: Int, padH: Int)(implicit ev: TensorNumeric[T]): Unit

    Attributes
    protected
  82. def updateOutput(input: Tensor[T]): Tensor[T]

    Computes the output using the current parameter set of the class and input.

    Computes the output using the current parameter set of the class and input. This function returns the result which is stored in the output field.

    input
    returns

    Definition Classes
    SpatialConvolutionAbstractModule
  83. def updateOutputFrame(input: Tensor[T], output: Tensor[T], weight: Tensor[T], bias: Tensor[T], fInput: Tensor[T], kW: Int, kH: Int, dW: Int, dH: Int, padW: Int, padH: Int, nInputPlane: Int, inputWidth: Int, inputHeight: Int, nOutputPlane: Int, outputWidth: Int, outputHeight: Int)(implicit ev: TensorNumeric[T]): Unit

    Attributes
    protected
  84. def updateParameters(learningRate: T): Unit

    Definition Classes
    SpatialConvolutionAbstractModule
  85. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  88. val weight: Tensor[T]

  89. var weightMM: Tensor[T]

    Attributes
    protected
  90. def zeroGradParameters(): Unit

    If the module has parameters, this will zero the accumulation of the gradients with respect to these parameters.

    If the module has parameters, this will zero the accumulation of the gradients with respect to these parameters. Otherwise, it does nothing.

    Definition Classes
    SpatialConvolutionAbstractModule

Inherited from TensorModule[T]

Inherited from AbstractModule[Tensor[T], Tensor[T], T]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped