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

BPNN number of hidden layers and learning curve #6

Open
seanshpark opened this issue May 8, 2017 · 2 comments
Open

BPNN number of hidden layers and learning curve #6

seanshpark opened this issue May 8, 2017 · 2 comments

Comments

@seanshpark
Copy link
Owner

For a XOR learing system, 2 input 2 output and N(>=1) hidden layers.
How does the learing differ by number of layers?
How do we measure? Will it be valid?

@seanshpark
Copy link
Owner Author

seanshpark commented May 8, 2017

With

  alpha_ = 0.90;  // momentum factor
  eta_   = 0.25;  // learning rate
  gain_  = 0.50;  // gain of sigmoid function

and 20 neurons,

  1. 2 / 20 / 2
  2. 2 / 10 / 10 / 2 : good
  3. 2 / 7 / 7 / 6 / 2 : doesn't seem to learn
  4. 2 / 5 / 5 / 5 / 5 / 2 : this too doesn't seem to learn

@seanshpark
Copy link
Owner Author

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