A minimal, fast C library for reinforcement learning environments
Get up and running with TinyGym-C in minutes
# Clone and build
git clone <repo-url>
cd tinygymc
cmake -S . -B build
cmake --build build -j
# Run Q-learning example
./build/examples/qlearn_gridworld --episodes 500
# Launch viewer
./build/viewer/tgc_viewer --env Gridworld-v0
# Interactive CLI mode
./build/examples/tgc_cli --env Gridworld-v0