You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: neural/neuralnetwork.pas
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -9770,8 +9770,8 @@ function TNNet.CreateLayer(strData: string): TNNetLayer;
9770
9770
if S[0] = 'TNNetConvolutionLinear'then Result := TNNetConvolutionLinear.Create(St[0], St[1], St[2], St[3], St[4]) else
9771
9771
if S[0] = 'TNNetGroupedConvolutionLinear'then Result := TNNetGroupedConvolutionLinear.Create(St[0], St[1], St[2], St[3], St[5], St[4]) else
9772
9772
if S[0] = 'TNNetGroupedConvolutionReLU'then Result := TNNetGroupedConvolutionReLU.Create(St[0], St[1], St[2], St[3], St[5], St[4]) else
9773
-
if S[0] = 'TNNetGroupedPointwiseConvLinear'then Result := TNNetGroupedPointwiseConvLinear.Create({pNumFeatures=}St[0], {pGroups=}St[5], {pSuppressBias=}St[4]);
9774
-
if S[0] = 'TNNetGroupedPointwiseConvReLU'then Result := TNNetGroupedPointwiseConvReLU.Create({pNumFeatures=}St[0], {pGroups=}St[5], {pSuppressBias=}St[4]);
9773
+
if S[0] = 'TNNetGroupedPointwiseConvLinear'then Result := TNNetGroupedPointwiseConvLinear.Create({pNumFeatures=}St[0], {pGroups=}St[5], {pSuppressBias=}St[4])else
9774
+
if S[0] = 'TNNetGroupedPointwiseConvReLU'then Result := TNNetGroupedPointwiseConvReLU.Create({pNumFeatures=}St[0], {pGroups=}St[5], {pSuppressBias=}St[4])else
9775
9775
if S[0] = 'TNNetConvolutionSharedWeights'then Result := TNNetConvolutionSharedWeights.Create(FLayers[St[5]]) else
9776
9776
if S[0] = 'TNNetDepthwiseConv'then Result := TNNetDepthwiseConv.Create(St[0], St[1], St[2], St[3]) else
9777
9777
if S[0] = 'TNNetDepthwiseConvReLU'then Result := TNNetDepthwiseConvReLU.Create(St[0], St[1], St[2], St[3]) else
@@ -9787,7 +9787,7 @@ function TNNet.CreateLayer(strData: string): TNNetLayer;
9787
9787
if S[0] = 'TNNetMaxChannel'then Result := TNNetMaxChannel.Create() else
9788
9788
if S[0] = 'TNNetMinChannel'then Result := TNNetMinChannel.Create() else
9789
9789
if S[0] = 'TNNetConcat'then Result := TNNetConcat.Create(aL) else
9790
-
if S[0] = 'TNNetInterleaveChannels'then Result := TNNetInterleaveChannels.Create(St[0]);
9790
+
if S[0] = 'TNNetInterleaveChannels'then Result := TNNetInterleaveChannels.Create(St[0])else
9791
9791
if S[0] = 'TNNetDeepConcat'then Result := TNNetDeepConcat.Create(aL) else
9792
9792
if S[0] = 'TNNetSum'then Result := TNNetSum.Create(aL) else
9793
9793
if S[0] = 'TNNetSplitChannels'then Result := TNNetSplitChannels.Create(aIdx) else
@@ -9805,10 +9805,10 @@ function TNNet.CreateLayer(strData: string): TNNetLayer;
9805
9805
if S[0] = 'TNNetChannelStdNormalization'then Result := TNNetChannelStdNormalization.Create() else
9806
9806
if S[0] = 'TNNetChannelBias'then Result := TNNetChannelBias.Create() else
9807
9807
if S[0] = 'TNNetChannelMul'then Result := TNNetChannelMul.Create() else
9808
-
if S[0] = 'TNNetChannelMulByLayer'then Result := TNNetChannelMulByLayer.Create(St[0], St[1]);
9808
+
if S[0] = 'TNNetChannelMulByLayer'then Result := TNNetChannelMulByLayer.Create(St[0], St[1])else
9809
9809
if S[0] = 'TNNetCellBias'then Result := TNNetCellBias.Create() else
9810
9810
if S[0] = 'TNNetCellMul'then Result := TNNetCellMul.Create() else
9811
-
if S[0] = 'TNNetCellMulByCell'then Result := TNNetCellMulByCell.Create(St[0], St[1]);
9811
+
if S[0] = 'TNNetCellMulByCell'then Result := TNNetCellMulByCell.Create(St[0], St[1])else
9812
9812
if S[0] = 'TNNetRandomMulAdd'then Result := TNNetRandomMulAdd.Create(St[0], St[1]) else
9813
9813
if S[0] = 'TNNetChannelRandomMulAdd'then Result := TNNetChannelRandomMulAdd.Create(St[0], St[1]) else
9814
9814
if S[0] = 'TNNetChannelZeroCenter'then Result := TNNetChannelZeroCenter.Create() else
0 commit comments