Views
No views yet
cleanrl package with the following command:pip install "cleanrl[DDQN]"
python -m cleanrl_utils.enjoy --exp-name DDQN --env-id PongNoFrameskip-v41curl -OL https://huggingface.co/pfunk/PongNoFrameskip-v4-DDQN-seed1/raw/main/dqn_atari.py
2curl -OL https://huggingface.co/pfunk/PongNoFrameskip-v4-DDQN-seed1/raw/main/pyproject.toml
3curl -OL https://huggingface.co/pfunk/PongNoFrameskip-v4-DDQN-seed1/raw/main/poetry.lock
4poetry install --all-extras
5python dqn_atari.py --track --wandb-entity pfunk --wandb-project-name dqpn --capture-video true --save-model true --upload-model true --hf-entity pfunk --exp-name DDQN --target-network-frequency 1000 --seed 1 --double-learning1{'alg_type': 'dqn_atari.py',
2 'batch_size': 32,
3 'buffer_size': 1000000,
4 'capture_video': True,
5 'cuda': True,
6 'double_learning': True,
7 'end_e': 0.05,
8 'env_id': 'PongNoFrameskip-v4',
9 'exp_name': 'DDQN',
10 'exploration_fraction': 0.2,
11 'gamma': 0.99,
12 'hf_entity': 'pfunk',
13 'learning_rate': 0.0001,
14 'learning_starts': 10000,
15 'max_gradient_norm': inf,
16 'save_model': True,
17 'seed': 1,
18 'start_e': 1.0,
19 'target_network_frequency': 1000,
20 'target_tau': 1.0,
21 'torch_deterministic': True,
22 'total_timesteps': 10000000,
23 'track': True,
24 'train_frequency': 1,
25 'upload_model': True,
26 'wandb_entity': 'pfunk',
27 'wandb_project_name': 'dqpn'}