-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutils_models.py
36 lines (34 loc) · 1.19 KB
/
utils_models.py
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
import numpy as np
from funcs_model_predictions import *
modelInfo = {
'sixState_full': {
'modelName': 'sixState_full',
'parNames': ['beta','eta','gamma','sb','pers','lapse'],
'Npars': 6,
'parBounds': [[0,10], [0,1], [0,1], [-2,2], [-2,2], [0,1]]
},
'fourState_full': {
'modelName': 'fourState_full',
'parNames': ['beta','eta','gamma','sb','pers','lapse'],
'Npars': 6,
'parBounds': [[0,10], [0,1], [0,1], [-2,2], [-2,2], [0,1]]
},
'hybridValue_full': {
'modelName': 'hybridValue_full',
'parNames': ['beta','w4','eta','gamma','sb','pers','lapse'],
'Npars': 7,
'parBounds': [[0,10], [0,1], [0,1], [0,1], [-2,2], [-2,2], [0,1]]
},
'hybridLearning_full': {
'modelName': 'hybridLearning_full',
'parNames': ['beta','eta','eta4state','gamma','sb','pers','lapse'],
'Npars': 7,
'parBounds': [[0,10], [0,1], [0,1], [0,1], [-2,2], [-2,2], [0,1]]
},
}
modelPredictions = {
'sixState_full': sixState_full_predict,
'fourState_full': fourState_full_predict,
'hybridValue_full': hybridValue_full_predict,
'hybridLearning_full': hybridLearning_full_predict,
}