Пример #1
0
 def means_conf(self):
     r""" The standard deviation of the Gaussian distribution means """
     return confidence_interval_arr(self.means_samples, conf=self._conf)
Пример #2
0
 def initial_distribution_conf(self):
     r""" The standard deviation of the initial distribution of the hidden states """
     return confidence_interval_arr(self.initial_distribution_samples, conf=self._conf)
Пример #3
0
 def output_probabilities_conf(self):
     r""" The standard deviation of the output probability matrix """
     return confidence_interval_arr(self.output_probabilities_samples,
                                    conf=self._conf)
Пример #4
0
 def eigenvectors_right_conf(self):
     r""" The standard deviation of the right eigenvectors of the hidden transition matrix """
     return confidence_interval_arr(self.eigenvectors_right_samples, conf=self._conf)
Пример #5
0
 def lifetimes_conf(self):
     r""" The standard deviation of the lifetimes of the hidden states """
     return confidence_interval_arr(self.lifetimes_samples, conf=self._conf)
Пример #6
0
 def transition_matrix_conf(self):
     r""" The standard deviation of the transition_matrix of the hidden states """
     return confidence_interval_arr(self.transition_matrix_samples, conf=self._conf)
Пример #7
0
 def eigenvalues_conf(self):
     r""" The standard deviation of the eigenvalues of the hidden states """
     return confidence_interval_arr(self.eigenvalues_samples, conf=self._conf)
Пример #8
0
 def means_conf(self):
     r""" The standard deviation of the Gaussian distribution means """
     return confidence_interval_arr(self.means_samples, conf=self._conf)
Пример #9
0
 def output_probabilities_conf(self):
     r""" The standard deviation of the output probability matrix """
     return confidence_interval_arr(self.output_probabilities_samples, conf=self._conf)
Пример #10
0
 def initial_distribution_conf(self):
     r""" The standard deviation of the initial distribution of the hidden states """
     return confidence_interval_arr(self.initial_distribution_samples,
                                    conf=self._conf)
Пример #11
0
 def lifetimes_conf(self):
     r""" The standard deviation of the lifetimes of the hidden states """
     return confidence_interval_arr(self.lifetimes_samples, conf=self._conf)
Пример #12
0
 def eigenvectors_right_conf(self):
     r""" The standard deviation of the right eigenvectors of the hidden transition matrix """
     return confidence_interval_arr(self.eigenvectors_right_samples,
                                    conf=self._conf)
Пример #13
0
 def eigenvalues_conf(self):
     r""" The standard deviation of the eigenvalues of the hidden states """
     return confidence_interval_arr(self.eigenvalues_samples,
                                    conf=self._conf)
Пример #14
0
 def transition_matrix_conf(self):
     r""" The standard deviation of the transition_matrix of the hidden states """
     return confidence_interval_arr(self.transition_matrix_samples,
                                    conf=self._conf)