mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
19 lines
444 B
YAML
19 lines
444 B
YAML
cartpole-dqn-fake-gpus:
|
|
env: CartPole-v0
|
|
run: DQN
|
|
stop:
|
|
episode_reward_mean: 150
|
|
training_iteration: 400
|
|
config:
|
|
# Works for both torch and tf.
|
|
framework: tf
|
|
model:
|
|
fcnet_hiddens: [64]
|
|
fcnet_activation: linear
|
|
n_step: 3
|
|
# Double batch size (2 GPUs).
|
|
train_batch_size: 64
|
|
|
|
# Fake 2 GPUs.
|
|
num_gpus: 2
|
|
_fake_gpus: true
|