Views
No views yet
cleanrl package with the following command:pip install "cleanrl[DQN_lr_0.00008]"
python -m cleanrl_utils.enjoy --exp-name DQN_lr_0.00008 --env-id CartPole-v11curl -OL https://huggingface.co/pfunk/CartPole-v1-DQN_lr_0.00008-seed3/raw/main/dqn.py
2curl -OL https://huggingface.co/pfunk/CartPole-v1-DQN_lr_0.00008-seed3/raw/main/pyproject.toml
3curl -OL https://huggingface.co/pfunk/CartPole-v1-DQN_lr_0.00008-seed3/raw/main/poetry.lock
4poetry install --all-extras
5python dqn.py --track --wandb-entity pfunk --wandb-project-name dqpn --capture-video true --save-model true --upload-model true --hf-entity pfunk --exp-name DQN_lr_0.00008 --learning-rate 0.00008 --seed 31{'alg_type': 'dqn.py',
2 'batch_size': 256,
3 'buffer_size': 300000,
4 'capture_video': True,
5 'cuda': True,
6 'end_e': 0.1,
7 'env_id': 'CartPole-v1',
8 'exp_name': 'DQN_lr_0.00008',
9 'exploration_fraction': 0.2,
10 'gamma': 1.0,
11 'hf_entity': 'pfunk',
12 'learning_rate': 8e-05,
13 'learning_starts': 1000,
14 'save_model': True,
15 'seed': 3,
16 'start_e': 1.0,
17 'target_network_frequency': 20,
18 'target_tau': 1.0,
19 'torch_deterministic': True,
20 'total_timesteps': 500000,
21 'track': True,
22 'train_frequency': 1,
23 'upload_model': True,
24 'wandb_entity': 'pfunk',
25 'wandb_project_name': 'dqpn'}