Class Conv1D
Inheritance
System.Object
Conv1D
Assembly: SiaNet.dll
Syntax
public class Conv1D : BaseLayer
Constructors
|
Improve this Doc
View Source
Conv1D(Int32, Int32, Int32, PaddingType, Int32, ActType, BaseInitializer, BaseRegularizer, BaseConstraint, Boolean, BaseInitializer, BaseRegularizer, BaseConstraint)
Declaration
public Conv1D(int filters, int kernalSize, int strides = 1, PaddingType padding = PaddingType.Same, int dilationRate = 1, ActType activation = ActType.Linear, BaseInitializer kernalInitializer = null, BaseRegularizer kernalRegularizer = null, BaseConstraint kernalConstraint = null, bool useBias = true, BaseInitializer biasInitializer = null, BaseRegularizer biasRegularizer = null, BaseConstraint biasConstraint = null)
Parameters
Properties
|
Improve this Doc
View Source
Act
Declaration
public ActType Act { get; set; }
Property Value
|
Improve this Doc
View Source
BiasConstraint
Declaration
public BaseConstraint BiasConstraint { get; set; }
Property Value
|
Improve this Doc
View Source
BiasInitializer
Declaration
public BaseInitializer BiasInitializer { get; set; }
Property Value
|
Improve this Doc
View Source
BiasRegularizer
Declaration
public BaseRegularizer BiasRegularizer { get; set; }
Property Value
|
Improve this Doc
View Source
DilationRate
Declaration
public int DilationRate { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Filters
Declaration
public int Filters { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
KernalConstraint
Declaration
public BaseConstraint KernalConstraint { get; set; }
Property Value
|
Improve this Doc
View Source
KernalInitializer
Declaration
public BaseInitializer KernalInitializer { get; set; }
Property Value
|
Improve this Doc
View Source
KernalRegularizer
Declaration
public BaseRegularizer KernalRegularizer { get; set; }
Property Value
|
Improve this Doc
View Source
KernalSize
Declaration
public int KernalSize { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Padding
Declaration
public PaddingType Padding { get; set; }
Property Value
|
Improve this Doc
View Source
Strides
Declaration
public int Strides { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
UseBias
Declaration
public bool UseBias { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
|
Improve this Doc
View Source
Backward(Tensor)
Declaration
public override void Backward(Tensor outputgrad)
Parameters
Type |
Name |
Description |
Tensor |
outputgrad |
|
Overrides
|
Improve this Doc
View Source
Forward(Tensor)
Declaration
public override void Forward(Tensor x)
Parameters
Type |
Name |
Description |
Tensor |
x |
|
Overrides