-
Notifications
You must be signed in to change notification settings - Fork 12
/
run.sh
44 lines (39 loc) · 1.48 KB
/
run.sh
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
python run.py --eval_mcts_on_pmlb True \
--pmlb_data_type feynman \
--target_noise 0.0 \
--lam 0.1 \
--horizon 200 \
--width 3 \
--num_beams 1 \
--rollout 3 \
--no_seq_cache False \
--no_prefix_cache True \
--max_input_points 200 \
--max_number_bags 10 \
--save_results True
python run.py --eval_mcts_on_pmlb True \
--pmlb_data_type strogatz \
--target_noise 0.0 \
--lam 0.1 \
--horizon 200 \
--width 3 \
--num_beams 1 \
--rollout 3 \
--no_seq_cache False \
--no_prefix_cache True \
--max_input_points 200 \
--max_number_bags 10 \
--save_results True
python run.py --eval_mcts_on_pmlb True \
--pmlb_data_type blackbox \
--target_noise 0.0 \
--lam 0.1 \
--horizon 200 \
--width 3 \
--num_beams 1 \
--rollout 3 \
--no_seq_cache False \
--no_prefix_cache True \
--max_input_points 200 \
--max_number_bags 10 \
--save_results True