public class Convolution
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
Convolution.Type |
Modifier and Type | Method and Description |
---|---|
static INDArray |
conv2d(IComplexNDArray input,
IComplexNDArray kernel,
Convolution.Type type) |
static INDArray |
conv2d(INDArray input,
INDArray kernel,
Convolution.Type type)
2d convolution (aka the last 2 dimensions
|
static IComplexNDArray |
convn(IComplexNDArray input,
IComplexNDArray kernel,
Convolution.Type type)
ND Convolution
|
static IComplexNDArray |
convn(IComplexNDArray input,
IComplexNDArray kernel,
Convolution.Type type,
int[] axes)
ND Convolution
|
static INDArray |
convn(INDArray input,
INDArray kernel,
Convolution.Type type)
ND Convolution
|
static INDArray |
convn(INDArray input,
INDArray kernel,
Convolution.Type type,
int[] axes)
ND Convolution
|
public static INDArray conv2d(INDArray input, INDArray kernel, Convolution.Type type)
input
- the input to transformkernel
- the kernel to convolve withtype
- public static INDArray conv2d(IComplexNDArray input, IComplexNDArray kernel, Convolution.Type type)
public static INDArray convn(INDArray input, INDArray kernel, Convolution.Type type, int[] axes)
input
- the input to transformkernel
- the kernel to transform withtype
- the type of convolutionaxes
- the axes to do the convolution alongpublic static IComplexNDArray convn(IComplexNDArray input, IComplexNDArray kernel, Convolution.Type type, int[] axes)
input
- the input to transformkernel
- the kernel to transform withtype
- the type of convolutionaxes
- the axes to do the convolution alongpublic static INDArray convn(INDArray input, INDArray kernel, Convolution.Type type)
input
- the input to applyTransformToOriginkernel
- the kernel to applyTransformToOrigin withtype
- the type of convolutionpublic static IComplexNDArray convn(IComplexNDArray input, IComplexNDArray kernel, Convolution.Type type)
input
- the input to applyTransformToOriginkernel
- the kernel to applyTransformToOrigin withtype
- the type of convolutionCopyright © 2014. All Rights Reserved.