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
This error terminates the leaner and happens on ~20% of runs for active learner and 60-70% of the time on the BALD learner.. The higher the budget, the more likely you encounter the error. It usually occurs in the 46th+ iteration of training, but sometimes occurs as soon as iteration 12.
File "learn_from_trial.py", line 47, in <module>
learner.update(correct, guess)
File "/Users/vlall/prog/dev/bams/bams/learners.py", line 60, in update
self.models.update()
File "/Users/vlall/prog/dev/bams/bams/models.py", line 142, in update
model.update()
File "/Users/vlall/prog/dev/bams/bams/models.py", line 35, in update
self.gp.compute(self.data.x, yerr=self.yerr)
File "/Users/vlall/.virtualenvs/bams/lib/python2.7/site-packages/george/gp.py", line 309, in compute
self.solver.compute(self._x, yerr, **kwargs)
File "/Users/vlall/.virtualenvs/bams/lib/python2.7/site-packages/george/solvers/basic.py", line 68, in compute
self._factor = (cholesky(K, overwrite_a=True, lower=False), False)
File "/Users/vlall/.virtualenvs/bams/lib/python2.7/site-packages/scipy/linalg/decomp_cholesky.py", line 91, in cholesky
check_finite=check_finite)
File "/Users/vlall/.virtualenvs/bams/lib/python2.7/site-packages/scipy/linalg/decomp_cholesky.py", line 40, in _cholesky
"definite" % info)
numpy.linalg.linalg.LinAlgError: 2-th leading minor of the array is not positive definite```
Mac 10.14
Python 2.7.10
The text was updated successfully, but these errors were encountered:
vlall
changed the title
Hessian bug
Decomp_cholesky bug
Jan 28, 2019
This error terminates the leaner and happens on ~20% of runs for active learner and 60-70% of the time on the BALD learner.. The higher the budget, the more likely you encounter the error. It usually occurs in the 46th+ iteration of training, but sometimes occurs as soon as iteration 12.
My config was:
This occurs with RandomStrategy and BALD
The text was updated successfully, but these errors were encountered: