ReinforcementLearning.jl
ReinforcementLearning.jl copied to clipboard
A reinforcement learning package for Julia
This pull request adds a Tabular Learner to the project. The Tabular Learner is used for reinforcement learning tasks and includes implementations for TDLearner, TabularVApproximator, and TabularQApproximator.
PR Checklist - [ ] Update NEWS.md? - [ ] Unit tests for all structs / functions? - [ ] Integration and correctness tests using a simple env? - [...
## Description Much of RLZoo needs to be migrated to the latest RLCore.jl / Flux.jl syntax. The goal is as follows: 1. Upgrade / refactor code in `RLZoo/src/algorithims` - Such...
Hey @HenriDeh, can you review the `TabularApproximator` code and let me know whether we want it in RLCore or not? I've added tests to it and modified it so it's...
Can't run the example code in the [Practical introduction to RL](https://github.com/JuliaReinforcementLearning/ReinforcementLearning.jl/blob/master/docs/homepage/blog/a_practical_introduction_to_RL.jl/index.html) blog post since the source code is largely broken.
Make gym.jl compatible with current version of Gymnasium - truncation and termination info instead of done PR Checklist - [ ] Update NEWS.md? - [x] Unit tests for all structs...
See here: https://github.com/JuliaGPU/CUDA.jl/blob/master/.buildkite/pipeline.yml
I recognized lately that the compat version in the Project.toml files are not suited in order to call activate_devmode!() from `src/devmode.jl`. In my opinion it may be beneficial for developers...
This pull request changes the compat entry for the `ReinforcementLearningZoo` package from `0.10.1` to `0.10.1, 0.8` for package ReinforcementLearningExperiments. This keeps the compat entries for earlier versions. Note: I have...
Hello ! I've been using PPOPolicy from your project with a MaskedPPOTrajetory. I think there are 2 issues within the update function : 1. The legal_action_mask creation line 266 :...