Home
last modified time | relevance | path

Searched refs:prior_state_var (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/
Dkalman_filter.py145 prior_state_var=estimated_state_covariance,
176 self, prior_state_var, transition_matrices, transition_noise_sums): argument
207 math_ops.matmul(transition_matrices, prior_state_var),
212 def posterior_from_prior_state(self, prior_state, prior_state_var, argument
243 observation_model, prior_state_var, adjoint_b=True)
266 prior_state_var)
280 prior_state_var)
Dstate_space_model.py244 self.prior_state_var = None
534 prior_state_var=estimated_state_covariance,
698 self.prior_state_var) = self._make_priors()
775 if self.prior_state_var is not None:
776 params_dict[self.prior_state_var] = numpy.zeros(
982 self.prior_state_var,
Dkalman_filter_test.py89 prior_state_var=state_var, transition_matrices=transition_fn([1]),
96 prior_state=pred_state, prior_state_var=pred_state_var,