madepro 0.1.0

A minimal Rust library crate for solving finite deterministic Markov decision processes (MDPs)
Documentation
  • Coverage
  • 67.24%
    39 out of 58 items documented2 out of 9 items with examples
  • Size
  • Source code size: 42.91 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 5.93 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • devspaceship/madepro
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • devspaceship

madepro

A minimal Rust library crate for solving finite deterministic Markov decision processes (MDPs).

Limitations

This library is still in development and is not ready for production use. It only implements a few algorithms and one environment. It is also limited to deterministic MDPs. Originally, I only created this library in order to refactor my blog post on Markov Decision Processes. However, I decided to probably continue working on it when I have the time. In the future I would first like to make the library more generic and then add more algorithms and environments.

Features

The library currently supports the following algorithms:

Roadmap

The following features are planned for the future:

  • Stochastic MDPs
  • Stochastic policies
  • State-dependent action spaces
  • More algorithms