diff --git a/README.md b/README.md index 654391d3..280b9340 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ CleanRL is a Deep Reinforcement Learning library that provides high-quality sing You can read more about CleanRL in our [JMLR paper](https://www.jmlr.org/papers/volume23/21-1342/21-1342.pdf) and [documentation](https://docs.cleanrl.dev/). -Good luck have fun :rocket: +CleanRL only contains implementations of **online** deep reinforcement learning algorithms. If you are looking for **offline** algorithms, please check out [tinkoff-ai/CORL](https://github.com/tinkoff-ai/CORL), which shares a similar design philosophy as CleanRL. > ⚠️ **NOTE**: CleanRL is *not* a modular library and therefore it is not meant to be imported. At the cost of duplicate code, we make all implementation details of a DRL algorithm variant easy to understand, so CleanRL comes with its own pros and cons. You should consider using CleanRL if you want to 1) understand all implementation details of an algorithm's varaint or 2) prototype advanced features that other modular DRL libraries do not support (CleanRL has minimal lines of code so it gives you great debugging experience and you don't have do a lot of subclassing like sometimes in modular DRL libraries). diff --git a/docs/index.md b/docs/index.md index e012129f..d0ae2d9c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,7 +25,7 @@ CleanRL is a Deep Reinforcement Learning library that provides high-quality sing You can read more about CleanRL in our [technical paper](https://arxiv.org/abs/2111.08819) and [documentation](https://docs.cleanrl.dev/). -Good luck have fun :rocket: +CleanRL only contains implementations of **online** deep reinforcement learning algorithms. If you are looking for **offline** algorithms, please check out [tinkoff-ai/CORL](https://github.com/tinkoff-ai/CORL), which shares a similar design philosophy as CleanRL. !!! warning