@@ -39,7 +39,7 @@ public TiledNet(int numNodes, int numFeatures, int numLayers, double learningRat
3939 this . clipValue = clipValue ;
4040 this . modelLayers = new List < IModelLayer > ( ) ;
4141 this . entities = new List < ( string , string ) > ( ) ;
42- this . TiledNetwork = new TiledNetwork . TiledNetwork ( this . numLayers , this . numNodes , this . numFeatures , this . learningRate , this . clipValue , "spatialnet " ) ;
42+ this . TiledNetwork = new TiledNetwork . TiledNetwork ( this . numLayers , this . numNodes , this . numFeatures , this . learningRate , this . clipValue , "tilednet " ) ;
4343 this . adamOptimize = new StochasticAdamOptimizer ( this . TiledNetwork ) ;
4444 }
4545
@@ -81,7 +81,7 @@ public void AdjustLearningRate(double learningRate)
8181 public async Task Initialize ( )
8282 {
8383 var initialAdamIteration = 1 ;
84- var model = new TiledNetwork . TiledNetwork ( this . numLayers , this . numNodes , this . numFeatures , this . learningRate , this . clipValue , "spatialnet " ) ;
84+ var model = new TiledNetwork . TiledNetwork ( this . numLayers , this . numNodes , this . numFeatures , this . learningRate , this . clipValue , "tilednet " ) ;
8585 model . Parameters . AdamIteration = initialAdamIteration ;
8686 this . TiledNetwork = model ;
8787 await this . TiledNetwork . Initialize ( ) ;
0 commit comments