
Experimental robotics simulator written in Rust.
About The Project |
Getting Started |
PyKesko |
Demo |
Acknowledgments
Kesko is pre-release and in its infancy, quite far from useful (but perhaps a bit fun to play around with). Currently it's more an exploration in Rust and what is currently possible within its open-source community. But, as time goes on the goal is to create a modern robotics simulator that fulfills
- Easiest simulator to get started with machine learning and robotics
- Best simulator for procedurally generate new environments for training
- Free and open-source
- Good looking!
Kesko in not yet available on crates.io but you can clone the repo and run locally.
Make sure you have Rust installed.
- Clone the repo
git clone https://github.com/wynss/kesko.git
- Build and run the demo example
cd kesko/kesko cargo run --bin kesko_demo --release
Kesko will have a python API built with PyO3 making it easy to integrate with popular deep/reinforcement learning frameworks such as PyTorch, Tensorflow. It will also integrate well with Gymnasium making it easy to use high quality implementation of RL algorithms like Stable Baselines3. Below is an example of a four legged model that has been trained to walk using Kesko's Gymnasium integration. The algorithm used was an implementation of Proximal Policy Optimization (PPO) from the Stable Baselines3 library.
There is a pre-release version available of PyKesko, read more about how to use it here.
Thanks to WebAssembly support Kesko can be run in the browser, try it here Kesko Demo
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Toni Axelsson - @toniaxelsson
Many thanks to the awesome people building