Skip to content

Feature 🤖

Checked with mypy Code style: black Imports: isort Documentation Status Documentation Status - 👨‍👩‍👧‍👦 Unified code structure - 📄 Single-file implementation - 🐷 Low code reuse - 📐 Minimizing code differences - 📈 Tensorboard & Wandb support - 🛤 PEP8(code style) & PEP526(type hint) compliant

📐 Minimizing code differences

In order to facilitate the comparison of the differences between algorithms and to unify the code style, the code will try to minimize the differences between the wired code files as shown in the diagram below.

graph LR
A[dqn.py] -->B[ddpg.py];
B -->C[td3.py];
C -->D[sac.py];
B -->E[ppo.py];
A -->F[ddqn.py];
A -->G[pdqn.py];