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

Multi-Layer WNN #38

Open
georgwiese opened this issue Jul 6, 2023 · 1 comment
Open

Multi-Layer WNN #38

georgwiese opened this issue Jul 6, 2023 · 1 comment

Comments

@georgwiese
Copy link
Member

Explore what can this mean, how could it work, and may be try it out.

For example, chain small WNN together.

@georgwiese
Copy link
Member Author

I think the difficulty with chaining WNNs is that a WNN basically remembers the patterns seen in the training set and therefore always achieves a perfect score on the training set (unless the same pattern appears in multiple classes, which means that the image is ambiguous).

One way around that could be:

  • Split the training set into two sets, ts1 and ts2
  • Train a WNN on ts1 -> will achieve perfect scores on ts1, but not on ts2
  • Train a second WNN on ts2, taking the outputs of the first (and maybe the image again?) as input

This way, the second WNN could learn to correct typical mistakes of the first WNN.

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

No branches or pull requests

1 participant