File size: 5,886 Bytes
855db49
 
 
 
 
 
 
 
 
 
 
 
fff5a3d
855db49
 
 
 
 
 
 
 
 
 
 
 
fff5a3d
855db49
 
 
fff5a3d
855db49
 
 
fff5a3d
 
 
855db49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fff5a3d
855db49
 
fff5a3d
855db49
 
 
 
 
 
 
 
 
 
 
fff5a3d
855db49
 
 
fff5a3d
855db49
 
 
 
 
 
 
 
 
 
fff5a3d
855db49
 
 
 
 
 
308e9ab
855db49
 
 
 
 
 
 
 
 
 
 
 
 
 
8a2ca6c
855db49
 
fff5a3d
 
 
 
 
 
 
 
 
8a2ca6c
fff5a3d
308e9ab
855db49
 
 
fff5a3d
308e9ab
 
 
 
 
fff5a3d
 
855db49
 
8a2ca6c
 
855db49
 
8a2ca6c
fff5a3d
855db49
fff5a3d
 
855db49
 
308e9ab
855db49
 
fff5a3d
 
8a2ca6c
fff5a3d
855db49
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
---
library_name: rl-algo-impls
tags:
- CarRacing-v0
- a2c
- deep-reinforcement-learning
- reinforcement-learning
model-index:
- name: a2c
  results:
  - metrics:
    - type: mean_reward
      value: 623.75 +/- 208.23
      name: mean_reward
    task:
      type: reinforcement-learning
      name: reinforcement-learning
    dataset:
      name: CarRacing-v0
      type: CarRacing-v0
---
# **A2C** Agent playing **CarRacing-v0**

This is a trained model of a **A2C** agent playing **CarRacing-v0** using the [/sgoodfriend/rl-algo-impls](https://github.com/sgoodfriend/rl-algo-impls) repo.

All models trained at this commit can be found at https://api.wandb.ai/links/sgoodfriend/ysd5gj7p.

## Training Results

This model was trained from 3 trainings of **A2C** agents using different initial seeds. These agents were trained by checking out [983cb75](https://github.com/sgoodfriend/rl-algo-impls/tree/983cb75e43e51cf4ef57f177194ab9a4a1a8808b). The best and last models were kept from each training. This submission has loaded the best models from each training, reevaluates them, and selects the best model from these latest evaluations (mean - std).

| algo   | env          |   seed |   reward_mean |   reward_std |   eval_episodes | best   | wandb_url                                                                    |
|:-------|:-------------|-------:|--------------:|-------------:|----------------:|:-------|:-----------------------------------------------------------------------------|
| a2c    | CarRacing-v0 |      1 |       368.77  |      125.926 |              12 |        | [wandb](https://wandb.ai/sgoodfriend/rl-algo-impls-benchmarks/runs/yy6vl74f) |
| a2c    | CarRacing-v0 |      2 |       363.779 |      166.663 |              12 |        | [wandb](https://wandb.ai/sgoodfriend/rl-algo-impls-benchmarks/runs/rft2z5w4) |
| a2c    | CarRacing-v0 |      3 |       623.749 |      208.23  |              12 | *      | [wandb](https://wandb.ai/sgoodfriend/rl-algo-impls-benchmarks/runs/0l78rzpf) |


### Prerequisites: Weights & Biases (WandB)
Training and benchmarking assumes you have a Weights & Biases project to upload runs to.
By default training goes to a rl-algo-impls project while benchmarks go to
rl-algo-impls-benchmarks. During training and benchmarking runs, videos of the best
models and the model weights are uploaded to WandB.

Before doing anything below, you'll need to create a wandb account and run `wandb
login`.



## Usage
/sgoodfriend/rl-algo-impls: https://github.com/sgoodfriend/rl-algo-impls

Note: While the model state dictionary and hyperaparameters are saved, the latest
implementation could be sufficiently different to not be able to reproduce similar
results. You might need to checkout the commit the agent was trained on:
[983cb75](https://github.com/sgoodfriend/rl-algo-impls/tree/983cb75e43e51cf4ef57f177194ab9a4a1a8808b).
```
# Downloads the model, sets hyperparameters, and runs agent for 3 episodes
python enjoy.py --wandb-run-path=sgoodfriend/rl-algo-impls-benchmarks/0l78rzpf
```

Setup hasn't been completely worked out yet, so you might be best served by using Google
Colab starting from the
[colab_enjoy.ipynb](https://github.com/sgoodfriend/rl-algo-impls/blob/main/colab_enjoy.ipynb)
notebook.



## Training
If you want the highest chance to reproduce these results, you'll want to checkout the
commit the agent was trained on: [983cb75](https://github.com/sgoodfriend/rl-algo-impls/tree/983cb75e43e51cf4ef57f177194ab9a4a1a8808b). While
training is deterministic, different hardware will give different results.

```
python train.py --algo a2c --env CarRacing-v0 --seed 3
```

Setup hasn't been completely worked out yet, so you might be best served by using Google
Colab starting from the
[colab_train.ipynb](https://github.com/sgoodfriend/rl-algo-impls/blob/main/colab_train.ipynb)
notebook.



## Benchmarking (with Lambda Labs instance)
This and other models from https://api.wandb.ai/links/sgoodfriend/ysd5gj7p were generated by running a script on a Lambda
Labs instance. In a Lambda Labs instance terminal:
```
git clone [email protected]:sgoodfriend/rl-algo-impls.git
cd rl-algo-impls
bash ./lambda_labs/setup.sh
wandb login
bash ./lambda_labs/benchmark.sh [-a {"ppo a2c dqn vpg"}] [-e ENVS] [-j {6}] [-p {rl-algo-impls-benchmarks}] [-s {"1 2 3"}]
```

### Alternative: Google Colab Pro+
As an alternative,
[colab_benchmark.ipynb](https://github.com/sgoodfriend/rl-algo-impls/tree/main/benchmarks#:~:text=colab_benchmark.ipynb),
can be used. However, this requires a Google Colab Pro+ subscription and running across
4 separate instances because otherwise running all jobs will exceed the 24-hour limit.



## Hyperparameters
This isn't exactly the format of hyperparams in hyperparams/a2c.yml, but instead the Wandb Run Config. However, it's very
close and has some additional data:
```
additional_keys_to_log: []
algo: a2c
algo_hyperparams:
  ent_coef: 1.5666550584860516e-06
  ent_coef_decay: linear
  gae_lambda: 0.9549244758833236
  gamma: 0.9942776405534832
  learning_rate: 1.8971962220405576e-05
  max_grad_norm: 2.2574480552177127
  n_steps: 64
  normalize_advantage: false
  sde_sample_freq: 16
  use_rms_prop: false
  vf_coef: 0.12164696385898476
device: auto
env: CarRacing-v0
env_hyperparams:
  frame_stack: 4
  n_envs: 4
  normalize: true
  normalize_kwargs:
    norm_obs: false
    norm_reward: true
env_id: null
eval_hyperparams: {}
microrts_reward_decay_callback: false
n_timesteps: 4000000
policy_hyperparams:
  activation_fn: tanh
  cnn_flatten_dim: 256
  hidden_sizes:
  - 256
  init_layers_orthogonal: true
  log_std_init: -4.839609092563
  share_features_extractor: false
  use_sde: true
seed: 3
use_deterministic_algorithms: true
wandb_entity: null
wandb_group: null
wandb_project_name: rl-algo-impls-benchmarks
wandb_tags:
- benchmark_983cb75
- host_129-159-43-75
- branch_main
- v0.0.9

```