-
Notifications
You must be signed in to change notification settings - Fork 29
/
trials_sweep.yaml
94 lines (94 loc) · 1.34 KB
/
trials_sweep.yaml
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
program: trials/scripts/train_trials.py
method: bayes
metric:
name: test/final_sharpe_ratio
goal: maximize
parameters:
feature-extractor-num-heads:
values:
- 2
- 4
train-steps:
values:
- 5
- 10
feature-extractor-num-layers:
values:
- 1
- 2
- 3
dropout:
values:
- 0.0
- 0.1
ent-coef:
values:
- 0.1
- 0.2
learning-rate:
values:
- 6e-12
- 6e-13
feature-extractor-hidden-dim:
values:
- 64
- 128
policy-network-hidden-dim:
values:
- 64
- 128
- 256
seed:
values:
- 1
- 13
- 42
- 30
- 5
trading-feature-extractor-num-heads:
values:
- 2
- 4
trading-train-steps:
values:
- 1000
- 2000
trading-feature-extractor-num-layers:
values:
- 1
- 2
- 3
trading-dropout:
values:
- 0.0
- 0.1
trading-ent-coef:
values:
- 0.6
trading-rl-gamma:
values:
- 0.8
- 1.0
trading-learning-rate:
values:
- 6e-4
- 6e-5
- 6e-6
trading-feature-extractor-hidden-dim:
values:
- 64
- 128
early_terminate:
type: hyperband
min_iter: 5
command:
- poetry
- run
- python
- ${program}
- "--feature-extractor=gru"
- "--policy=serial_selection"
- "--eval-freq=5"
- "--rolling-serial=3"
- "--trading-num-process=48"
- ${args}