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

A Suggestion on Output of the Network #45

Closed
vbogach opened this issue Jun 1, 2017 · 2 comments
Closed

A Suggestion on Output of the Network #45

vbogach opened this issue Jun 1, 2017 · 2 comments

Comments

@vbogach
Copy link

vbogach commented Jun 1, 2017

Currently the output of the network is 9-dimensional with the meaning of:
w = [1,0,0,0,0,0,0,0,0] s = [0,1,0,0,0,0,0,0,0] a = [0,0,1,0,0,0,0,0,0] d = [0,0,0,1,0,0,0,0,0] wa = [0,0,0,0,1,0,0,0,0] wd = [0,0,0,0,0,1,0,0,0] sa = [0,0,0,0,0,0,1,0,0] sd = [0,0,0,0,0,0,0,1,0] nk = [0,0,0,0,0,0,0,0,1]
I believe this could be simplified to just 4 states { w, s, a, d } and keys to be pressed are to detected by a threshold individually. This might speed up the learning and calculation process.

@Sentdex
Copy link
Owner

Sentdex commented Jun 1, 2017

I had tried this with a simpler model, and it never learned, I found the unique one_hot outputs to work.

I've never had a network be able to learn multiple output nodes being "on" for some reason. Have you ever had success with that?

@jsn5
Copy link

jsn5 commented Jun 1, 2017

This sounds like a multi-label classification problem where the data can belong to more than one of the classes. This might work.

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

4 participants