ConvModule(Int32, Int32, Int32, Int32, Int32, Int32, Boolean, Boolean) Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe ConvModule.
public ConvModule (int inChannel, int outChannel, int kernelSize, int stride = 1, int padding = 0, int dilation = 1, bool bias = true, bool useRelu = true);
new Microsoft.ML.TorchSharp.AutoFormerV2.ConvModule : int * int * int * int * int * int * bool * bool -> Microsoft.ML.TorchSharp.AutoFormerV2.ConvModule
Public Sub New (inChannel As Integer, outChannel As Integer, kernelSize As Integer, Optional stride As Integer = 1, Optional padding As Integer = 0, Optional dilation As Integer = 1, Optional bias As Boolean = true, Optional useRelu As Boolean = true)
Paramètres
- inChannel
- Int32
Canaux d’entrée de la couche de convolution.
- outChannel
- Int32
Canaux de sortie de la couche de convolution.
- kernelSize
- Int32
Taille du noyau de la couche de convolution.
- stride
- Int32
La foulée de la couche de convolution.
- padding
- Int32
Remplissage de la couche de convolution.
- dilation
- Int32
Dilatation de la couche de convolution.
- bias
- Boolean
Biais de la couche de convolution.
- useRelu
- Boolean
Si vous utilisez la fonction d’activation Relu.