davidquarel commited on
Commit
0d42f35
·
verified ·
1 Parent(s): 9023922

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +71 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### UNUSED
2
+
3
+ A run to dial in suitable values of alpha, learning rate, and discount_rate after the learning rate bug was fixed. All trained with the same seed, so not especially useful for experiments, but was useful for dialing in hyperparams.
4
+
5
+ Trained with now obsolete code on commit hash [`8b73ab2736efca9a494348d2e68a62442e219aab`](https://github.com/timaeus-research/timaeus/commit/8b73ab2736efca9a494348d2e68a62442e219aab)
6
+ Wandb https://wandb.ai/devinterp/jaxgmg2_3phase_fast
7
+
8
+ Ran with
9
+
10
+ ```
11
+ wandb sweep sweep.yaml
12
+ ```
13
+
14
+ Contents of `sweep.yaml`
15
+
16
+ ```
17
+ command:
18
+ - env
19
+ - WANDB_AGENT_MAX_INITIAL_FAILURES=1
20
+ - /root/timaeus/.venv/bin/python
21
+ - ${program}
22
+ - ${args}
23
+ - --use-wandb
24
+ - --use-hf
25
+ entity: devinterp
26
+ method: random
27
+ parameters:
28
+ alpha:
29
+ distribution: uniform
30
+ max: 0.9
31
+ min: 0.2
32
+ cheese-loc:
33
+ value: any
34
+ ckpt-dir:
35
+ value: jaxgmg2_3phase_fast
36
+ discount-rate:
37
+ values:
38
+ - 0.99
39
+ - 0.975
40
+ eval-schedule:
41
+ value: 0:1,250:2,500:5
42
+ f-str-ckpt:
43
+ value: al_{alpha:.3f}_g_{discount_rate}_seed_{seed}_pa_{num_prev_actions}_lr_{lr:.0e}
44
+ grad-acc-per-chunk:
45
+ value: 5
46
+ lr:
47
+ values:
48
+ - 5e-05
49
+ - 0.0001
50
+ - 0.0002
51
+ - 0.0005
52
+ - 0.001
53
+ - 0.002
54
+ - 0.005
55
+ mask-type:
56
+ value: first_episode
57
+ ntfy:
58
+ value: david_jaxgmg
59
+ num-levels:
60
+ value: 9600
61
+ num-prev-actions:
62
+ value: 1
63
+ num-total-env-steps:
64
+ value: 2000000000
65
+ seed:
66
+ value: 100
67
+ wandb-project:
68
+ value: jaxgmg2_3phase_fast
69
+ program: /root/timaeus/projects/rl/main_train.py
70
+ project: jaxgmg2_3phase_fast
71
+ ```