LLNL / MuyGPyS

A fast, pure python implementation of the MuyGPs Gaussian process realization and training algorithm.
Other
25 stars 11 forks source link

Need to change assertEqual calls to _check_ndarray calls #134

Closed alecmdunton closed 1 year ago

alecmdunton commented 1 year ago

When we make a call in the testing harness such as self.assertEqual(kern.shape, (train_count, nn_count, nn_count)), we really want to make a call like _check_ndarray(self.assertEqual, kern, mm.ftype, (test_count, nn_count, nn_count)).

bwpriest commented 1 year ago

Addressed (I think).