1
Fork 0
This repository has been archived on 2026-08-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2026SEL3-project-Brittle_St.../docs
Tibo De Peuter 50bc3bf20b
Update docs/design/actor-critic.md
Co-authored-by: RobinMeersman <77965843+RobinMeersman@users.noreply.github.com>
2026-05-20 15:24:10 +02:00
..
api Merge branch 'dev' into docs/mkdocs 2026-05-20 15:14:33 +02:00
design Update docs/design/actor-critic.md 2026-05-20 15:24:10 +02:00
javascripts fix: switch to katex 2026-05-19 23:17:17 +02:00
CONTRIBUTING.md docs: fix non docs/ links 2026-05-19 22:58:01 +02:00
DEVELOPMENT.md docs: proper newlines formatting 2026-05-19 23:04:41 +02:00
HPC.md docs: latex and urls 2026-05-19 23:11:20 +02:00
README.md docs: cleanup and extra references 2026-05-20 15:05:18 +02:00

Documentation

Welcome to the Brittle Star project documentation. This codebase contains the implementations and research for the scientific evaluation of controller modularity in brittle-star-like robots trained using Reinforcement Learning.

For the core codebase, scripts, and contribution history, visit our GitHub Repository.

Core Requirements & Guides

  • Installation Instructions: Steps to set up your development environment locally or in a devcontainer using uv, including GPU configuration. For High-Performance Computing (HPC) setup details, see the HPC Guide.
  • How to Run Experiments: A complete guide on running training jobs, setting custom hyperparameters, and overriding config options using Hydra.
  • Results & Reproduction: Guide on how to access our public WandB training runs table and reproduce our training and evaluation phases (determining the best checkpoint vs. comparing architectures).
  • Contribution Guidelines: Standards, rules, and best practices for developing and adding code to the repository.
  • Repository Structure: Overview of the directories and files within the codebase.

Repository Structure

.
├── configs/                # Hydra configuration files (YAML)
├── docs/                   # Comprehensive documentation and API guides
├── runs/                   # Default output directory for Hydra and training artifacts
├── scripts/                # High-level entrypoints for training, simulation, and evaluation
├── src/
│   ├── brittle_star_project/ # Core library and environment logic
│   │   ├── evaluation/     # Checkpoint evaluation, rollout logic, and metrics persistence
│   │   └── trainers/       # Training loop implementations (e.g., PPO)
│   └── experiment_logger/  # Standalone logging package
└── tests/                  # Unit and integration tests

Design & architecture (/design)

If you are interested in the "why did you do it like this?"

API reference (/api)

If you are interested in the "how do I use it?"