-
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.
LazyTensor -> LinearOperator (#2027)
* Bump version, require linear_operator * [WIP] Replace LazyTensor with LinearOperator, fix gpytorch/lazy test suite failures * [WIP] fix gpytorch/variational test suite failures * [WIP] fix gpytorch/functions test suite failures * [WIP] specify linear_operator commit in setup.py * [WIP] Remove lazy docs * [WIP] Update CI requirements * [WIP] Pipe eval_cg_tolerance to linear_operator.utils.linear_cg * [WIP] Use linear_operator errors (fix variational fantasy test failures) * [WIP] fix remaining test suite bugs * [WIP] Use linear_operator functions * [WIP] Add linear_operator dependency, bump Python to 3.8 * [WIP] remove unused utilities * [WIP] Move Cholesky to LinearOperator * Fix rebase issues * Fix new failing test, consolodate requirements, fix docs typo. * Fix import in IdentityLT test * Bump linear operator version * Fix cuda issue in polya gamma notebook * Shorten LinearOperator and Tensor imports in gpytorch/__init__.py * Remove deprecation warnings after linear_operator migration (#2102) * Remove tests of deprecated items that were moved to linear_operator * Run test suite * Replace all LazyTensors with LinearOperators * Update .diag, .evaluate, .add_diag, .inv_matmul calls, solve ConstantMean deprecation warnings * Rename *_lazy_tensor arguments, use linear_operator interpolation utils * Resolve solve_triangular warnings * Resolve eigh warnings * Resolve meshgrid warnings * Update gpytorch/kernels/multi_device_kernel.py Co-authored-by: Max Balandat <[email protected]> * Update gpytorch/likelihoods/multitask_gaussian_likelihood.py Co-authored-by: Max Balandat <[email protected]> * Consistent import * Add tests for deprecated LazyTensor import * Fix doc issues * Fix doc issues * Remove extra testing requirements Co-authored-by: Max Balandat <[email protected]> Co-authored-by: Max Balandat <[email protected]>
- Loading branch information
Showing
222 changed files
with
1,973 additions
and
16,831 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,6 @@ GPyTorch's documentation | |
:caption: Advanced Package Reference | ||
|
||
module | ||
lazy | ||
functions | ||
utils | ||
|
||
|
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
name: gpytorch | ||
channels: | ||
- pytorch | ||
- gpytorch | ||
dependencies: | ||
- pytorch | ||
- numpy | ||
- scikit-learn | ||
- scipy | ||
- linear_operator>0.1.1 |
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.