-
Notifications
You must be signed in to change notification settings - Fork 562
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better support for missing labels (#2288)
* Fix prediction with NaN values in training labels * Missing observation support for multitask and allow MultivariateMultitaskNormal indexing * Fix error in MultitaskMultivariateNormal indexing on '...' * Fix indexing with negative values * Add tests - Indexing MultitaskMultivariateNormal - Missing data in single-task and multitask models * Render docs for MultitaskMultivariateNormal indexing and missing observations * Fix docs warning * Fix docstring * Finally fix docstring * Change missing data handling to option flag * Revamp missing value implementation - Enable via gpytorch.settings - Two modes: 'mask' and 'fill' - Makes GaussianLikelihoodWithMissingObs obsolete - Supports approximate GPs * Fix Python version incompatibility * Increase atol on variational tests * Add ExactMarginalLogLikelihoodWithMissingObs back with deprecation warning * Add warning if kernel matrix is made dense * Fix docs * Add quick path for noop slice indices * Add test for noop slice indexing * Fix docs * Switch to MaskedLinearOperator * Switch to MaskedLinearOperator from linear-operator 0.5.1 * Disable test_t_matmul_matrix() for LazyEvaluatedKernelTensor The test fails because LazyEvaluatedKernelTensor only supports _matmul() with checkpointing, but checkpointing is deprecated. * Fix merge conflict
- Loading branch information
Showing
12 changed files
with
769 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.