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

Refactor sub modules #78

Merged
merged 22 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update imports based on refactor
  • Loading branch information
RNKuhns committed Dec 1, 2022
commit d5a852bf048eb20f548b7b28061a3aa673a9c3b2
6 changes: 3 additions & 3 deletions skbase/testing/test_all_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@

adapted from scikit-learn's and sktime's estimator_checks
"""

__author__ = ["fkiraly"]

import numbers
import types
from copy import deepcopy
from inspect import getfullargspec, isclass, signature
from typing import List

import joblib
import numpy as np
Expand All @@ -27,6 +25,8 @@
from skbase.testing.utils.deep_equals import deep_equals
from skbase.testing.utils.inspect import _get_args

__author__: List[str] = ["fkiraly"]


class BaseFixtureGenerator:
"""Fixture generator for skbase testing functionality.
Expand Down
2 changes: 1 addition & 1 deletion skbase/tests/test_baseestimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

import pytest

from skbase import BaseEstimator, BaseObject
from skbase._exceptions import NotFittedError
from skbase.base import BaseEstimator, BaseObject


@pytest.fixture
Expand Down