Ariel Kwiatkowski

Results 40 comments of Ariel Kwiatkowski

I installed ml-agents on Windows just a couple days ago without many problems and everything works well, so I think it's alright? I believe pip install + adding the Unity...

Is there an end-user solution for this? I'm trying to setup Haskell on a new machine and running into this problem again

This is somewhat similar to #851, so I'll address them together. Basically, there's a tradeoff between being consistent and being efficient. In case of the RNG argument, if a certain...

To explain in some more detail how it works: if you do `gym.make("module_name:envid-v0")`, then internally it gets split on the colon into `module_name` and `envid-v0`. Internally then it calls `importlib.import_module("module_name")`,...

Is the issue still present if you do `img = env.render("rgb_array")`? My guess is that it's yet another issue with the `human` rendering, but I thought that pygame was nicer...

So I just tested a basic loop ```python env = gym.make("CartPole-v1", new_step_api=True) env.reset() for _ in range(100): env.step(env.action_space.sample()) env.render() ``` and it works without any issues. My setup is Mac...

@austinmw Do you maybe happen to be running the code on a headless machine?

Is there some more detailed error message you can provide? I know jupyter sometimes dumps some logs/stack trace in the terminal where you're running the jupyter instance. I don't have...

@austinmw Glad that it works now, but I have no idea why it would make a difference. In any case, the API switching is on the way out for the...

@pseudo-rnd-thoughts Which fix do you mean? I don't recall this having been figured out, there's just the hope that if the issue is indeed due to the API switching (which...