Yasuhiro Fujita
Yasuhiro Fujita
At least they seem to be case sensitive to my OpenSSH client. For example, when I put ``` Host github User git HostName github.com ``` to my `~/.ssh/config`, I can...
> So if "$ ssh github" works, why don't you just use the lowercase host alias ;-) Because it is not me but a program written by others that executes...
Thanks for information. I haven't tried it yet, but the paper provides some information as below. Did you find it is not sufficient? > µ is modeled by a linear...
The original paper uses action repeating. See 8. Experimental Setup in http://arxiv.org/abs/1602.01783.
Thank you for pointing it out! I'll check the performance with that transformation.
Thanks for nice fixes! I'll merge it after checking. > I was wondering if you were going to push a updated version? Yes, I have had some refactoring and implemented...
Adding examples of applying A3C for OpenAI Gym's continuous tasks is on my To-Do list. Since `DoomEnv` used by `train_a3c_doom.py` has a similar interface with `gym.Env`, modifying `train_a3c_doom.py` so that...
You only need to define an original environment class that has `reset` and `step` methods. Please check `doom_env.py` for example.
For visualization, just add `--use-sdl` when you run `demo_a3c_ale.py`.
I found that missing evaluation is caused by processes stuck in `evaluate_performance()`. It is possible that some policies fail start to play Breakout, preventing episodes from being terminated. If so,...