File tree Expand file tree Collapse file tree 6 files changed +7
-0
lines changed Expand file tree Collapse file tree 6 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ def __init__(
103
103
combine_hidden_states = True ,
104
104
observed_state_names = observed_state_names ,
105
105
obs_state_idxs = np .tile (np .r_ [[1.0 ], np .zeros (k_states - 1 )], k_endog_effective ),
106
+ share_states = share_states ,
106
107
)
107
108
108
109
def populate_component_properties (self ):
Original file line number Diff line number Diff line change @@ -197,6 +197,7 @@ def __init__(
197
197
combine_hidden_states = True ,
198
198
obs_state_idxs = obs_state_idx ,
199
199
observed_state_names = observed_state_names ,
200
+ share_states = share_states ,
200
201
)
201
202
202
203
def make_symbolic_graph (self ) -> None :
Original file line number Diff line number Diff line change @@ -170,6 +170,7 @@ def __init__(
170
170
obs_state_idxs = np .tile (
171
171
np .array ([1.0 ] + [0.0 ] * (k_states - 1 )), k_endog if not share_states else 1
172
172
),
173
+ share_states = share_states ,
173
174
)
174
175
175
176
def populate_component_properties (self ):
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ def __init__(
119
119
measurement_error = True ,
120
120
combine_hidden_states = False ,
121
121
observed_state_names = observed_state_names ,
122
+ share_states = share_states ,
122
123
)
123
124
124
125
def populate_component_properties (self ):
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ def __init__(
132
132
k_states = k_states * k_endog if not share_states else k_states ,
133
133
k_posdef = k_posdef * k_endog if not share_states else k_posdef ,
134
134
state_names = self .state_names ,
135
+ share_states = share_states ,
135
136
observed_state_names = observed_state_names ,
136
137
measurement_error = False ,
137
138
combine_hidden_states = False ,
Original file line number Diff line number Diff line change @@ -296,6 +296,7 @@ def __init__(
296
296
obs_state_idxs = np .tile (
297
297
np .array ([1.0 ] + [0.0 ] * (k_states - 1 )), 1 if share_states else k_endog
298
298
),
299
+ share_states = share_states ,
299
300
)
300
301
301
302
def populate_component_properties (self ):
@@ -525,6 +526,7 @@ def __init__(
525
526
k_posdef = k_states * int (self .innovations )
526
527
if share_states
527
528
else k_states * int (self .innovations ) * k_endog ,
529
+ share_states = share_states ,
528
530
observed_state_names = observed_state_names ,
529
531
measurement_error = False ,
530
532
combine_hidden_states = True ,
You can’t perform that action at this time.
0 commit comments