LLNL / MuyGPyS

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

Add missing kwargs to optimize_scale #235

Open igoumiri opened 3 months ago

igoumiri commented 3 months ago

I ran into an error when trying to optimize the scale for a hierarchical model where I wasn't able to pass batch_features to the kernel. This fixes it.

Example usage:

muygps = muygps.optimize_scale(batch_pairwise_diffs, batch_nn_targets, batch_features=batch_features)