Views
No views yet
cleanrl package with the following command:pip install "cleanrl[CP_DQN_norm_1]"
python -m cleanrl_utils.enjoy --exp-name CP_DQN_norm_1 --env-id CartPole-v11curl -OL https://huggingface.co/pfunk/CartPole-v1-CP_DQN_norm_1-seed555/raw/main/dqn.py
2curl -OL https://huggingface.co/pfunk/CartPole-v1-CP_DQN_norm_1-seed555/raw/main/pyproject.toml
3curl -OL https://huggingface.co/pfunk/CartPole-v1-CP_DQN_norm_1-seed555/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 CP_DQN_norm_1 --max-gradient-norm 1.0 --seed 5551{'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': 'CP_DQN_norm_1',
9 'exploration_fraction': 0.2,
10 'gamma': 1.0,
11 'hf_entity': 'pfunk',
12 'learning_rate': 0.0001,
13 'learning_starts': 1000,
14 'max_gradient_norm': 1.0,
15 'save_model': True,
16 'seed': 555,
17 'start_e': 1.0,
18 'target_network_frequency': 100,
19 'target_tau': 1.0,
20 'torch_deterministic': True,
21 'total_timesteps': 500000,
22 'track': True,
23 'train_frequency': 1,
24 'upload_model': True,
25 'wandb_entity': 'pfunk',
26 'wandb_project_name': 'dqpn'}