-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from ziatdinovmax/multitask
Multi-fidelity/task DKL and GP + code refactoring
- Loading branch information
Showing
35 changed files
with
1,537 additions
and
128 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from . import utils, kernels, acquisition | ||
from .gp import ExactGP | ||
from .vgp import vExactGP | ||
from .bnn import DKL, viDKL, iBNN, vi_iBNN | ||
from .vigp import viGP | ||
from .spm import sPM | ||
from .hypo import sample_next | ||
|
||
from .__version__ import version as __version__ | ||
from . import utils | ||
from . import kernels | ||
from . import acquisition | ||
from .hypo import sample_next | ||
from .models import (DKL, CoregGP, ExactGP, MultiTaskGP, iBNN, vExactGP, | ||
vi_iBNN, viDKL, viGP, viMTDKL) | ||
|
||
__all__ = ["utils", "kernels", "acquisition", "ExactGP", "vExactGP", "DKL", | ||
"viDKL", "iBNN", "vi_iBNN", "viGP", "sPM", "sample_next", "__version__"] | ||
__all__ = ["utils", "kernels", "mtkernels", "acquisition", "ExactGP", "vExactGP", "DKL", | ||
"viDKL", "iBNN", "vi_iBNN", "MultiTaskGP", "viMTDKL", "viGP", "sPM", | ||
"CoregGP", "sample_next", "__version__"] |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
from .acquisition import * |
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 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from .kernels import (MaternKernel, NNGPKernel, PeriodicKernel, RBFKernel, | ||
get_kernel, nngp_erf, nngp_relu) | ||
from .mtkernels import (LCMKernel, MultitaskKernel, MultivariateKernel, | ||
index_kernel) | ||
|
||
__all__ = [ | ||
"RBFKernel", | ||
"MaternKernel", | ||
"PeriodicKernel", | ||
"NNGPKernel", | ||
"get_kernel", | ||
"index_kernel", | ||
"MultitaskKernel", | ||
"MultivariateKernel", | ||
"LCMKernel" | ||
] |
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.