1
Fork 0

docs: add docs README landing/starting point

This commit is contained in:
Tibo De Peuter 2026-04-08 12:08:54 +02:00
parent d628bf1e9c
commit b9c0358b29
Signed by: tdpeuter
SSH key fingerprint: SHA256:u/h/LVoqKF1Iz02uOyxe6hcjmoZASCGV2HM0TG9ZMoU
2 changed files with 23 additions and 2 deletions

14
docs/README.md Normal file
View file

@ -0,0 +1,14 @@
# Documentation
## Design & architecture ([`/design`](./design/))
- [Controllers](./design/controllers.md): Macroscopig brain toplogy, centralized, arm-level, segment-level.
- [MLP architecture](./design/mlp_architecture.md): Module wiring, state/action spaces, and actor-critic pipeline.
- [Communication](./design/communication.md): Message propagation, Nerve-Net style.
- [Learning algorithm](./design/learning_algorithm.md): RL techniques, i.e. PPO.
- [Reward function](./design/learning_algorithm.md): Goals, fitness tracking, and reward structures.
## API reference ([`/api`](./api/))
- [Environment](./api/environment.md): MuJoCo environment interaction, state retrieval, and configuration.
- [Simulate](./api/simulate.md): Simulation rendering.