You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The two approaches are slightly different - one is based on a multivariate gaussian and the other on a univariate. However, it should be possible to unify them. My idea would be to do both using multivariate_normal and then squeeze the 1D case.
Argh - the relation between normal and multivariate_normal is not exactly 1:1. normal needs the standard deviation while mulitvariate_normal wants the (co-) variance.
Extract the code to 'predict' auto regression and write a numpy-based function. This is used in two places:
mesmer/mesmer/create_emulations/create_emus_lv.py
Line 112 in 9def742
mesmer/mesmer/create_emulations/create_emus_gv.py
Line 111 in 9def742
The two approaches are slightly different - one is based on a multivariate gaussian and the other on a univariate. However, it should be possible to unify them. My idea would be to do both using
multivariate_normal
and thensqueeze
the 1D case.The text was updated successfully, but these errors were encountered: