Skip to content

Commit

Permalink
Fixing #39.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaopauloschuler committed Jan 31, 2021
1 parent ac78bc3 commit 8d9fe90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neural/neuralnetwork.pas
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ TNNetConvolutionBase = class(TNNetConvolutionAbstract)
procedure SetPrevLayer(pPrevLayer: TNNetLayer); override;
function ShouldUseInterleavedDotProduct:boolean; {$IFDEF Release} inline; {$ENDIF}
public
constructor Create(pNumFeatures, pFeatureSize, pInputPadding, pStride: integer; pSuppressBias: integer = 0); virtual; overload;
constructor Create(pNumFeatures, pFeatureSize, pInputPadding, pStride: integer; pSuppressBias: integer = 0); overload; virtual;
destructor Destroy(); override;
{$IFDEF OpenCL}
procedure EnableOpenCL(DotProductKernel: TDotProductKernel); override;
Expand Down Expand Up @@ -934,7 +934,7 @@ TNNetConvolutionSharedWeights = class(TNNetConvolution)
private
FLinkedLayer: TNNetConvolution;
public
constructor Create(LinkedLayer: TNNetLayer); virtual; overload;
constructor Create(LinkedLayer: TNNetLayer); overload; virtual;
destructor Destroy; override;
end;

Expand Down

0 comments on commit 8d9fe90

Please sign in to comment.