351bd9aff698b367007e5dcd8909181830fe9dac,geomstats/learning/kalman_filter.py,KalmanFilter,initialize_covariances,#KalmanFilter#Any#Any#Any#,461

Before Change


            "covariance": prior_values,
            "process_noise": process_values,
            "measurement_noise": obs_values}
        for key in cov_dict:
            setattr(self, key, cov_dict[key])

    def propagate(self, sensor_input):
        Propagate the estimate and its covariance.

        Given the propagation Jacobian F and the noise Jacobian G, the

After Change


            "covariance": prior_values,
            "process_noise": process_values,
            "measurement_noise": obs_values}
        for attribute, value in cov_dict.items():
            setattr(self, attribute, value)

    def propagate(self, sensor_input):
        Propagate the estimate and its covariance.

        Given the propagation Jacobian F and the noise Jacobian G, the
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 7

Instances


Project Name: geomstats/geomstats
Commit Name: 351bd9aff698b367007e5dcd8909181830fe9dac
Time: 2020-06-15
Author: 62605255+pchauchat@users.noreply.github.com
File Name: geomstats/learning/kalman_filter.py
Class Name: KalmanFilter
Method Name: initialize_covariances


Project Name: Microsoft/nni
Commit Name: 10d7ece1c34c5533262a54d20d974a3d04f0b7ce
Time: 2020-09-15
Author: 40699903+liuzhe-lz@users.noreply.github.com
File Name: src/sdk/pynni/nni/compression/tensorflow/compressor.py
Class Name:
Method Name: _instrument_model


Project Name: matthewwithanm/django-imagekit
Commit Name: a9895f335a5323b4bee7d6cbcffffbe826645c03
Time: 2011-09-08
Author: matthew@exanimo.com
File Name: imagekit/models.py
Class Name: ImageModelBase
Method Name: __init__