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(whitener): add Whitener to whiten a 2D matrix #185

Merged
merged 4 commits into from
Aug 19, 2024
Merged
Changes from 1 commit
Commits
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
refactor(whitener): add Whitener to __init__
  • Loading branch information
nicrie committed Aug 19, 2024
commit 751b97e0c2d38fca0c3ffbbf66eeaaba9ae928b4
10 changes: 6 additions & 4 deletions xeofs/preprocessing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
from .scaler import Scaler
from .sanitizer import Sanitizer
from .multi_index_converter import MultiIndexConverter
from .stacker import Stacker
from .concatenator import Concatenator
from .dimension_renamer import DimensionRenamer
from .multi_index_converter import MultiIndexConverter
from .sanitizer import Sanitizer
from .scaler import Scaler
from .stacker import Stacker
from .whitener import Whitener

__all__ = [
"Scaler",
Expand All @@ -12,4 +13,5 @@
"Stacker",
"Concatenator",
"DimensionRenamer",
"Whitener",
]