tspooner / rsrl

A fast, safe and easy to use reinforcement learning framework in Rust.
https://crates.io/crates/rsrl
MIT License
179 stars 13 forks source link

Not able to run the openai code #59

Open infinite-Joy opened 5 years ago

infinite-Joy commented 5 years ago

When trying to run a code with the openai platform getting the below error

   Compiling rsrl v0.6.0 (/home/nineleaps/thinking/programming-languages/rust-lang/rsrl)
error[E0432]: unresolved imports `crate::geometry::dimensions`, `crate::geometry::RegularSpace`
 --> src/domains/openai/mod.rs:4:5
  |
4 |     dimensions::{Continuous, Discrete},
  |     ^^^^^^^^^^ could not find `dimensions` in `geometry`
5 |     RegularSpace,
  |     ^^^^^^^^^^^^ no `RegularSpace` in the root

error: aborting due to previous error

For more information about this error, try `rustc --explain E0432`.
error: Could not compile `rsrl`.

To learn more, run the command again with --verbose.

Seems like there has been a lot of code changes since the openai features had been integrated.

nbro commented 2 years ago

@tspooner Has this issue been solved? You have a branch here called fix-openai. Was it created to fix this issue or something else?