lfa 0.15.0

Native rust implementations of linear function approximators.
Documentation

LFA (api)

Crates.io Build Status Coverage Status

Overview

lfa provides a set of implementations for common linear function approximation techniques used in reinforcement learning.

Installation

[dependencies]
lfa = "0.15"

Note that rsrl enables the blas feature of its ndarray dependency, so if you're building a binary, you additionally need to specify a BLAS backend compatible with ndarray. For example, you can add these dependencies:

blas-src = { version = "0.2.0", default-features = false, features = ["openblas"] }
openblas-src = { version = "0.6.0", default-features = false, features = ["cblas", "system"] }

See ndarray's README for more information.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate and adhere to the angularjs commit message conventions (see here).

License

MIT