Views
No views yet
1curl -OL https://huggingface.co/cleanrl/PongNoFrameskip-v4-dqn_atari_jax-seed1/raw/main/dqn.py
2curl -OL https://huggingface.co/cleanrl/PongNoFrameskip-v4-dqn_atari_jax-seed1/raw/main/pyproject.toml
3curl -OL https://huggingface.co/cleanrl/PongNoFrameskip-v4-dqn_atari_jax-seed1/raw/main/poetry.lock
4poetry install --all-extras
5python dqn_atari_jax.py --track --capture-video --save-model --upload-model --hf-entity cleanrl --env-id PongNoFrameskip-v4 --seed 11{'batch_size': 32,
2 'buffer_size': 1000000,
3 'capture_video': True,
4 'end_e': 0.01,
5 'env_id': 'PongNoFrameskip-v4',
6 'exp_name': 'dqn_atari_jax',
7 'exploration_fraction': 0.1,
8 'gamma': 0.99,
9 'hf_entity': 'cleanrl',
10 'learning_rate': 0.0001,
11 'learning_starts': 80000,
12 'save_model': True,
13 'seed': 1,
14 'start_e': 1,
15 'target_network_frequency': 1000,
16 'total_timesteps': 10000000,
17 'track': True,
18 'train_frequency': 4,
19 'upload_model': True,
20 'wandb_entity': None,
21 'wandb_project_name': 'cleanRL'}