We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 hard would it be to implement this?
I'm trying ReinforceJS the 2048 game here: https://github.com/NullVoxPopuli/doctor-who-thirteen-game-ai/blob/master/worker.js#L105
and I've noticed a couple things:
Additionally,
idk :D
The text was updated successfully, but these errors were encountered:
Hi there,
Tracing the implementation, I guess the current version already supports the idea of "multiple layers"~
What you need is to modify these two lines with an array of layers as you like :)
reinforcejs/lib/rl.js
Line 1285 in 08d2030
Line 1292 in 08d2030
For example, neurons with two same-size layers:
// Same-size hidden layers this.actorLSTM = R.initLSTM(this.ns, [this.nh, this.nh], this.na); ... // Same-size hidden layers this.baselineLSTM = R.initLSTM(this.ns, [this.nhb, this.nhb], 1);
btw, your link is in a private repo (others cannot access it 😢 )
Sorry, something went wrong.
Hi! I wonder if there's a way to change network size for DQNAgent... 😄
No branches or pull requests
How hard would it be to implement this?
I'm trying ReinforceJS the 2048 game here: https://github.com/NullVoxPopuli/doctor-who-thirteen-game-ai/blob/master/worker.js#L105
and I've noticed a couple things:
Additionally,
idk :D
The text was updated successfully, but these errors were encountered: