5bbd453ab1901bf0a3a4f4684ad5b4b7f8446902,gpflow/conditionals/uncertain_conditionals.py,,uncertain_conditional,#Any#Any#Any#Any#Any#Any#,12

Before Change



    eKuf = tf.transpose(expectation(pXnew, (kernel, feature)))  // M x N (psi1)
    Kuu = feature.Kuu(kernel, jitter=default_jitter())  // M x M
    Luu = tf.cholesky(Kuu)  // M x M

    if not white:
        q_mu = tf.matrix_triangular_solve(Luu, q_mu, lower=True)

After Change


    q_sqrt_r = tf.matrix_band_part(q_sqrt, -1, 0)  // D x M x M

    eKuf = tf.transpose(expectation(pXnew, (kernel, feature)))  // M x N (psi1)
    Luu = tf.cholesky(Kuu(feature, kernel, jitter=default_jitter()))

    if not white:
        q_mu = tf.matrix_triangular_solve(Luu, q_mu, lower=True)
        Luu_tiled = tf.tile(Luu[None, :, :], [num_func, 1, 1])  // remove line once issue 216 is fixed
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 5

Non-data size: 3

Instances


Project Name: GPflow/GPflow
Commit Name: 5bbd453ab1901bf0a3a4f4684ad5b4b7f8446902
Time: 2018-10-16
Author: art.art.v@gmail.com
File Name: gpflow/conditionals/uncertain_conditionals.py
Class Name:
Method Name: uncertain_conditional


Project Name: GPflow/GPflow
Commit Name: 8d9d4599a79f86f53117bbe6b3aa17a91b15f98f
Time: 2016-04-13
Author: james.hensman@gmail.com
File Name: GPflow/sgpr.py
Class Name: GPRFITC
Method Name: build_common_terms


Project Name: GPflow/GPflow
Commit Name: be14d17696f15d11a8075e4943c718320ca97a45
Time: 2019-03-18
Author: art.art.v@gmail.com
File Name: gpflow/conditionals/uncertain_conditionals.py
Class Name:
Method Name: uncertain_conditional


Project Name: GPflow/GPflow
Commit Name: 956ac38fd58a1ef65c18dffc06a22d2e628e3a16
Time: 2016-01-18
Author: james.hensman@gmail.com
File Name: testing/test_conditionals.py
Class Name: WhitenTestGaussian
Method Name: test_whiten


Project Name: GPflow/GPflow
Commit Name: 5bbd453ab1901bf0a3a4f4684ad5b4b7f8446902
Time: 2018-10-16
Author: art.art.v@gmail.com
File Name: gpflow/models/gplvm.py
Class Name: BayesianGPLVM
Method Name: _build_predict