Skip to content

Commit

Permalink
fix(cross): fix data augmentation in Hilbert cross-set models (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicrie authored Sep 10, 2024
1 parent 75bbe7a commit 960f744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xeofs/cross/base_model_cross_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def fit(
X = self.whitener1.fit_transform(X)
Y = self.whitener2.fit_transform(Y)
# Augment data
X, y = self._augment_data(X, Y)
X, Y = self._augment_data(X, Y)
# Fit the model
self._fit_algorithm(X, Y)

Expand Down

0 comments on commit 960f744

Please sign in to comment.