Skip to content

Commit

Permalink
Fix: remove redundant BaseEstimator inheritance in `KerasBaseEstima…
Browse files Browse the repository at this point in the history
…tor`
  • Loading branch information
RollerKnobster committed Jun 24, 2024
1 parent 77bc40c commit bede872
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gordo/machine/model/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import pandas as pd
import xarray as xr

from sklearn.base import TransformerMixin, BaseEstimator
from sklearn.base import TransformerMixin
from sklearn.metrics import explained_variance_score
from sklearn.exceptions import NotFittedError

Expand All @@ -34,7 +34,7 @@
logger = logging.getLogger(__name__)


class KerasBaseEstimator(BaseWrapper, GordoBase, BaseEstimator):
class KerasBaseEstimator(BaseWrapper, GordoBase):
supported_fit_args = [
"batch_size",
"epochs",
Expand Down

0 comments on commit bede872

Please sign in to comment.