Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Smt with combination of kernels #653

Merged
merged 12 commits into from
Sep 26, 2024
Prev Previous commit
Next Next commit
ruff on __init__ v2
  • Loading branch information
NicolasGonel committed Sep 20, 2024
commit 108ddf63fd0867d48164cca8e4623896d2778ae3
13 changes: 13 additions & 0 deletions smt/kernels/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
from .kernels import (
Kernel,
PowExp,
SquarSinExp,
Matern32,
Matern52,
ActExp,
Constant,
Operator,
Sum,
Product,
)

__all__ = [
"Kernel",
"PowExp",
Expand Down
Loading