Views
No views yet
cleanrl package with the following command:pip install "cleanrl[cartpole_sweep]"
python -m cleanrl_utils.enjoy --exp-name cartpole_sweep --env-id CartPole-v11curl -OL https://huggingface.co/pfunk/CartPole-v1-cartpole_sweep-seed1/raw/main/dqpn.py
2curl -OL https://huggingface.co/pfunk/CartPole-v1-cartpole_sweep-seed1/raw/main/pyproject.toml
3curl -OL https://huggingface.co/pfunk/CartPole-v1-cartpole_sweep-seed1/raw/main/poetry.lock
4poetry install --all-extras
5python dqpn.py --end-policy-f=100 --evaluation-fraction=0.25 --exp-name=cartpole_sweep --hf-entity=pfunk --save-model=true --start-policy-f=100 --track=true --upload-model=true --wandb-entity=pfunk --wandb-project-name=dqpn1{'batch_size': 256,
2 'buffer_size': 300000,
3 'capture_video': False,
4 'cuda': True,
5 'end_e': 0.1,
6 'end_policy_f': 100,
7 'env_id': 'CartPole-v1',
8 'evaluation_fraction': 0.25,
9 'exp_name': 'cartpole_sweep',
10 'exploration_fraction': 0.2,
11 'gamma': 1.0,
12 'hf_entity': 'pfunk',
13 'learning_rate': 0.0001,
14 'learning_starts': 1000,
15 'policy_tau': 1.0,
16 'save_model': True,
17 'seed': 1,
18 'start_e': 1.0,
19 'start_policy_f': 100,
20 'target_network_frequency': 100,
21 'target_tau': 1.0,
22 'torch_deterministic': True,
23 'total_timesteps': 500000,
24 'track': True,
25 'train_frequency': 1,
26 'upload_model': True,
27 'wandb_entity': 'pfunk',
28 'wandb_project_name': 'dqpn'}