Views
No views yet
cleanrl package with the following command:pip install "cleanrl[CP_DQPN_x5]"
python -m cleanrl_utils.enjoy --exp-name CP_DQPN_x5 --env-id CartPole-v11curl -OL https://huggingface.co/pfunk/CartPole-v1-CP_DQPN_x5-seed777/raw/main/dqpn_freq.py
2curl -OL https://huggingface.co/pfunk/CartPole-v1-CP_DQPN_x5-seed777/raw/main/pyproject.toml
3curl -OL https://huggingface.co/pfunk/CartPole-v1-CP_DQPN_x5-seed777/raw/main/poetry.lock
4poetry install --all-extras
5python dqpn_freq.py --track --wandb-entity pfunk --wandb-project-name dqpn --capture-video true --save-model true --upload-model true --hf-entity pfunk --exp-name CP_DQPN_x5 --policy-network-frequency 500 --seed 7771{'alg_type': 'dqpn_freq.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_DQPN_x5',
9 'exploration_fraction': 0.2,
10 'gamma': 1.0,
11 'hf_entity': 'pfunk',
12 'learning_rate': 0.0001,
13 'learning_starts': 1000,
14 'policy_network_frequency': 500,
15 'policy_tau': 1.0,
16 'save_model': True,
17 'seed': 777,
18 'start_e': 1.0,
19 'target_network_frequency': 100,
20 'target_tau': 1.0,
21 'torch_deterministic': True,
22 'total_timesteps': 500000,
23 'track': True,
24 'train_frequency': 1,
25 'upload_model': True,
26 'wandb_entity': 'pfunk',
27 'wandb_project_name': 'dqpn'}