-
Notifications
You must be signed in to change notification settings - Fork 201
Open
Labels
enhancementNew feature or requestNew feature or request
Description
The convolutional layer seems to use square matrices, providing services for image recognition.
Can convolutional layers have different FFeatureSizeX and FFeatureSizeY to enable convolution operations to be applied in non-image recognition fields?
constructor TNNetConvolutionAbstract.Create(pFeatureSize, pInputPadding, pStride: integer; pSuppressBias: integer = 0); begin inherited Create(); FFeatureSizeX := pFeatureSize; FFeatureSizeY := pFeatureSize; FPadding := pInputPadding; FStride := Max(pStride,1); FSuppressBias := pSuppressBias; if FPadding > 0 then begin FInputCopy := TNNetVolume.Create; end; FPrevLayerErrorPadded := TNNetVolume.Create; end;
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request