Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Poor scalability #333

Open
ignasg opened this issue Sep 9, 2018 · 1 comment
Open

Poor scalability #333

ignasg opened this issue Sep 9, 2018 · 1 comment

Comments

@ignasg
Copy link

ignasg commented Sep 9, 2018

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.

@ghost
Copy link

ghost commented Sep 9, 2018

Thats Node V8 passing out. Try Node Chakra:
https://nodejs.org/download/chakracore-nightly/

However for networks of this size I would recommend Tensorflow/Keras with one or more Nvidia GPUs,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant