-
Notifications
You must be signed in to change notification settings - Fork 132
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
How to set a suitable 'hidden_layer_sizes'? #1
Comments
Sorry for really*10 late reply. Basically all of the data handled by this library are matrices(2-dimensional arrays). Therefore, the label vector should be matrix even if number of output is one. (e.g [[1],[0]]) |
Hello,
which will be the right Thanks |
I am having the same issue. I'm getting an array mismatch. I'm not sure how order the number of hidden layers. I have 10 different independent variables with varying data points. My Y is [1,0] or [0,1]. So do I select a hidden layer size of [10,2] or do i need to do something like [10, {max number of data points}, 2] ? Right now this is blocking me from using this library. |
My data have one output only, when i set the output to one , a error found :
throw new Error('Matrix mismatch.');
Is it the issue of hidden layer? And how to solve it ?
The text was updated successfully, but these errors were encountered: