-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
46 lines (41 loc) · 1.01 KB
/
constants.py
File metadata and controls
46 lines (41 loc) · 1.01 KB
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
TASKS = [
"task_go",
"task_go_rt",
"task_go_delay",
"task_go_oic",
"task_go_oic_rt",
"task_go_oic_delay",
"decision_making",
"ctx_decision_making_rf0",
"ctx_decision_making_rf1",
"decision_making_multisensory",
"delayed_decision_making",
"delayed_ctx_decision_making_rf0",
"delayed_ctx_decision_making_rf1",
"delayed_decision_making_multisensory",
"delayed_match_sample",
"delayed_match_category",
"delayed_match_sample_delayed_response",
"delayed_match_category_delayed_response",
]
train_params = {
"learning_rate": 0.001,
"weight_decay": 0.0,
"l2_penalty": 1e-4,
"n_full_plasticity_epochs": 15,
"n_sparse_plasticity_epochs": 20,
"batch_size": 512,
"num_workers": 16,
"RL": False,
"seed": 42,
}
model_params = {
"n_hidden": 500,
"tau_neuron": 100.0,
"tau_slow": 1000.0,
"tau_fast": 200.0,
"dt": 20.0,
"exc_fraction": 0.8,
"noise_std": 0.01,
"batch_size": train_params["batch_size"]
}