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
Not sure if this is by design, but it tends to die with larger layers:
var Layer = synaptic.Layer,
Network = synaptic.Network;
var totalSize = 1024;
var inputLayer = new Layer(totalSize);
var hiddenLayer1 = new Layer(totalSize);
inputLayer.project(hiddenLayer1, Layer.connectionType.ALL_TO_ALL);
^^ hangs here. Sluggishly works with smaller number of neurons.
The text was updated successfully, but these errors were encountered:
Not sure if this is by design, but it tends to die with larger layers:
^^ hangs here. Sluggishly works with smaller number of neurons.
The text was updated successfully, but these errors were encountered: