Sam Stites

Results 61 comments of Sam Stites

needs to be bumped. See stites/gym-http-api#2

This can be condensed down to a simple Main.hs example file off the top of my head (quasiquotes or strings both would be fine): ```haskell main :: IO () main...

small update on this -- turn out that the gym itself isn't compatible with cython, so I am guessing we'll be stuck with this dependency for longer than expected. I've...

Awesome! Yeah, every now and then I start porting over a environment from the toy problems and classic envs. Ideally `reinforce` natively implements its own emulators and drops the gym-http-api...

Porting directly used to be the plan-of-action. I was also thinking that haskell could just bypass the gym and call https://github.com/mgbellemare/Arcade-Learning-Environment directly.

Basically any C++ gym alternatives are fair game, so long as they extern to C.

That's probably the right way forward (and was starting to be the direction of the `algorithms` repo). I was a bit afraid of over-abstracting before introducing function approximators, so I...

Hopefully, this abstraction comes out of writing more agents.

I would love to chat! I believe this repo is pretty beginner-friendly as well (meaning no fancy types). My email address [email protected] (rot13-encoded), send me a ping! As you may...

Yeah, that was the rough idea -- maybe looking at the last N-run (or doing some sort of significance testing RE: [Deep Reinforcement Learning that Matters](https://arxiv.org/abs/1709.06560)).