mvrahden / reinforce-js

[INACTIVE] A collection of various machine learning solver. The library is an object-oriented approach (baked with Typescript) and tries to deliver simplified interfaces that make using the algorithms pretty simple.
https://npmjs.com/package/reinforce-js
MIT License
31 stars 6 forks source link

Termination Scenario #4

Open kevupton opened 6 years ago

kevupton commented 6 years ago

Hey,

This is more a question, but how would a termination scenario be handled in the case for a example, the game is over and needs to be restarted ?

If this is not implemented, do you have an idea of how it would be ?

mvrahden commented 6 years ago

Hello @kevupton and sorry for the late response. I was traveling a lot in recent days and had very bad connectivity and few time. Your question refers to the simulation/environment implementation. I recommend keeping the solver decoupled from this, since the solver lives inside the world/environment/simulation.

Do you agree with me here? The example application learning-agents shows how this implementation could look like.