-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparams.py
More file actions
32 lines (30 loc) · 908 Bytes
/
params.py
File metadata and controls
32 lines (30 loc) · 908 Bytes
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
PARAMS = {
"experiment_name": "nd2",
"robustness": 2,
"samples": 1,
"num_agents":None,
#"experiment_description":EXP_DISC,
"experiments":{
"mes": {
#"part_description":PART_DISC,
"exp_part":None,
"model": "BDQ",
"training_config": {
"num_iters": 5,
"val_interval": 5,
"test_iters": 1,
"buffer_capacity": 1000,
"learning_rate": 1e-4,
"target_net_update_freq": 50,
"batch_size": 32
},
"env_config": {"num_rounds":1,
"voting_rule":"method_of_equal_shares",
"first_instance":None,
"num_agents":None,
"voter_preferences": None,
"ballot":"approval"
}
},
}
}