selfint / rust-ml

Rust machine learning library
0 stars 0 forks source link

Implement Q learner #6

Open selfint opened 3 years ago

selfint commented 3 years ago

Implementing a single Q learning trainer, and separate agents for:

Each one will have a separate implementation of a Q function and Q update function, but they are all trained in the same way.

selfint commented 3 years ago

Continuous actions Q agents aren't simple to learn. Maybe this article can help?