:warning: :construction: Work in Progress :construction:
This library aims be be as close to the original OpenAI Gym library which is written in Python and translate it into Rust for blazingly fast performance. This will make the use of Python unnecessary which is awesome.
If you don't mind Python and would like to use the original implementation from Rust, check out a gym wrapper.
To use this crate in your project, put this in your Cargo.toml:
toml
gym_rs = { git = "https://www.github.com/MathisWellmann/gym-rs" }
Here is how you can use the cart_pole environment with a trained neural network agent from a file using the common genetic encoding (cge) and rendering enabled: ```rust /* Cart Pole Environment solved using Neat with a network in the form of a common genetic encoding (cge crate) */ extern crate cge;
use gym_rs::{ActionType, CartPoleEnv, GymEnv, GifRender};
fn main() { // load the network from file let mut net = cge::Network::loadfromfile("./examples/gymcartpole_champion.cge").unwrap();
let mut env = CartPoleEnv::default();
let mut viewer = GifRender::new(
540,
540,
"img/cart_pole_solved_render.gif",
50
).unwrap();
let mut state: Vec<f64> = env.reset();
let mut end: bool = false;
let mut total_reward: f64 = 0.0;
while !end {
if total_reward > 200.0 {
println!("SOLVED!");
break;
}
let output = net.evaluate(&state);
let action: ActionType = if output[0] < 0.0 {
ActionType::Discrete(0)
} else {
ActionType::Discrete(1)
};
let (s, reward, done, _info) = env.step(action);
end = done;
state = s;
total_reward += reward;
env.render(&mut viewer);
}
println!("total_reward: {}", total_reward);
} ```
Run it with:
cargo run --release --example cart_pole_solved_render --features="cge"
See examples folder for all the examples
If you would like to add an environment or a feature, please fork this repository and create a pull request with your changes. Adding new environments should be as easy as translating from Python to Rust. See OpenAI/gym for environments that are not yet implemented here! There is a lot of easy work to be done here. Any Help is highly appreciated and benefits the Rust and ML/AI community greatly!
I you would like to support the development of this crate, feel free to send over a donation:
Monero (XMR) address:
plain
47xMvxNKsCKMt2owkDuN1Bci2KMiqGrAFCQFSLijWLs49ua67222Wu3LZryyopDVPYgYmAnYkSZSz9ZW2buaDwdyKTWGwwb
gym-rs is licensed under MIT License just like OpenAI's Gym.
See LICENSE.md for further details.