private LayerBase CreateLayer() { var layer = new Dense(10, 5, null); layer.Init(); layer.Weights.FillWithRand(); return(layer); }