Skip to content

Commit c529841

Browse files
Update src/skmatter/metrics/_reconstruction_measures.py
Co-authored-by: Philip Loche <[email protected]>
1 parent 316fe30 commit c529841

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

src/skmatter/metrics/_reconstruction_measures.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -539,18 +539,7 @@ def check_local_reconstruction_measures_input(
539539

540540

541541
def _prepare_data(X, Y, train_idx, test_idx, scaler):
542-
"""
543-
Split and scale data for reconstruction measures
544-
545-
Parameters
546-
----------
547-
X, Y : array-like
548-
Input data
549-
train_idx, test_idx : array-like
550-
Indices for train/test split
551-
scaler : object
552-
Fitted scaler
553-
"""
542+
"""Split and scale data for reconstruction measures"""
554543
X_train, X_test = X[train_idx], X[test_idx]
555544
Y_train, Y_test = Y[train_idx], Y[test_idx]
556545

0 commit comments

Comments
 (0)