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
I'd love to be able to build a 2 layer Network, which would be exactly like any other Network made with the constructor, but it would only have 2 layers. I need this so I can clear the context of layers, and so I can export it to JSON.
The text was updated successfully, but these errors were encountered:
You can do it now. Suppose, you want to write a perceptron with 1 input, 2 layers with 4 neurons each and 1 output, then you'd write it like this var myNetwork = new Architect.Perceptron(1, 4, 4, 1).
I'd love to be able to build a 2 layer Network, which would be exactly like any other Network made with the constructor, but it would only have 2 layers. I need this so I can clear the context of layers, and so I can export it to JSON.
The text was updated successfully, but these errors were encountered: