Skip to content

Commit 8c9d1c1

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ef8ac93 commit 8c9d1c1

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/pyepal/models/coregionalized.py

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def __init__( # pylint:disable=too-many-arguments
4343
W_rank=1,
4444
kernel_name="coreg",
4545
):
46-
4746
# Input and Output
4847
(
4948
X, # pylint:disable=invalid-name

src/pyepal/pal/pal_gpy.py

-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ def _train(self):
9191
pass # There is no training in instance based models
9292

9393
def _predict(self):
94-
9594
from ..models.gpr import predict # pylint:disable=import-outside-toplevel
9695

9796
means, stds = [], []

src/pyepal/pal/pal_neural_tangent.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737

3838
__all__ = ["PALNT", "NTModel"]
3939

40+
4041
# We move those functions out of the class so that we can parallelize them
4142
def _set_one_infinite_width_model( # pylint:disable=too-many-arguments
4243
i: int,
@@ -127,7 +128,6 @@ def __init__(self, *args, **kwargs):
127128
def _set_data(self):
128129
self.design_space = self.design_space_scaler.fit_transform(self.design_space)
129130
for i, _ in enumerate(self.models):
130-
131131
predict_fn, scaler = _set_one_infinite_width_model(
132132
i,
133133
self.models,

0 commit comments

Comments
 (0)