Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/ale/train_a2c_ale.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from chainerrl import policy
from chainerrl import v_function

import atari_wrappers
from chainerrl.wrappers import atari_wrappers


def phi(x):
Expand Down
2 changes: 1 addition & 1 deletion examples/ale/train_a3c_ale.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from chainerrl.recurrent import RecurrentChainMixin
from chainerrl import v_function

import atari_wrappers
from chainerrl.wrappers import atari_wrappers


class A3CFF(chainer.ChainList, a3c.A3CModel):
Expand Down
2 changes: 1 addition & 1 deletion examples/ale/train_acer_ale.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from chainerrl.optimizers import rmsprop_async
from chainerrl.replay_buffer import EpisodicReplayBuffer

import atari_wrappers
from chainerrl.wrappers import atari_wrappers


def main():
Expand Down
2 changes: 1 addition & 1 deletion examples/ale/train_categorical_dqn_ale.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from chainerrl import misc
from chainerrl import replay_buffer

import atari_wrappers
from chainerrl.wrappers import atari_wrappers


def main():
Expand Down
2 changes: 1 addition & 1 deletion examples/ale/train_dqn_ale.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from chainerrl.q_functions import DuelingDQN
from chainerrl import replay_buffer

import atari_wrappers
from chainerrl.wrappers import atari_wrappers


class SingleSharedBias(chainer.Chain):
Expand Down
2 changes: 1 addition & 1 deletion examples/ale/train_dqn_batch_ale.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from chainerrl.q_functions import DuelingDQN
from chainerrl import replay_buffer

import atari_wrappers
from chainerrl.wrappers import atari_wrappers


class SingleSharedBias(chainer.Chain):
Expand Down
2 changes: 1 addition & 1 deletion examples/ale/train_nsq_ale.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from chainerrl import misc
from chainerrl.optimizers import rmsprop_async

import atari_wrappers
from chainerrl.wrappers import atari_wrappers


def main():
Expand Down
2 changes: 1 addition & 1 deletion examples/ale/train_ppo_ale.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from chainerrl import policy
from chainerrl import v_function

import atari_wrappers
from chainerrl.wrappers import atari_wrappers


class A3CFF(chainer.ChainList, A3CModel):
Expand Down
2 changes: 2 additions & 0 deletions examples/atari/dqn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ python train_dqn.py [options]
- `--gpu`. Specifies the GPU. If you do not have a GPU on your machine, run the example with the option `--gpu -1`. E.g. `python train_dqn.py --gpu -1`.
- `--env`. Specifies the environment.
- `--render`. Add this option to render the states in a GUI window.
- `--seed`. This option specifies the random seed used.
- `--outdir` This option specifies the output directory to which the results are written.

To view the full list of options, either view the code or run the example with the `--help` option.

Expand Down
264 changes: 0 additions & 264 deletions examples/atari/dqn/atari_wrappers.py

This file was deleted.

Loading