Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@MrRobb MrRobb released this 11 Oct 20:43
· 131 commits to master since this release

Fixes

  • We are using the latest version of the dependencies. That fixes #7.

New Features

  • Full support for tuples, discrete and box environments. More info about the environments here.
  • It is safe to create one GymClient and make multiple environments running concurrently.
  • It is possible to specify the seed of the environment.
let client = GymClient::new("127.0.0.1".parse().unwrap(), 8000).unwrap();
let seed = 1234;
let env = client.make("Copy-v0".into(), Some(1234)).unwrap();

Changes

Instead of this:

let client = GymClient::new("127.0.0.1:8000").unwrap();

Now you have to do this:

let client = GymClient::new("127.0.0.1".parse().unwrap(), 8000).unwrap();