bioFAM / MOFA

Multi-Omics Factor Analysis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing for loop

vsomnath opened this issue · comments

return s.sum( stats.multivariate_normal.pdf(x, mean=self.params['mean'][n,:], cov=self.params['cov'][n,:,:]) )

In the above referenced line, it looks like a for-loop is missing, since the variable n is used but not defined within the function.

This is correct, thanks for the heads up!
But just to clarify, currently we don't use multivariate normals so this line should not intervene at all .

Thanks for the quick response, and the clarification!