You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: