Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn committed May 13, 2021
1 parent 4648331 commit 470e05b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/paper/continuum_neural_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def fit(self, X, y, validation_data=None):
X = X[:, None, ...]
if validation_data is not None:
X_val, y_val = validation_data
X_val = scaler.transform(X_val)
X_val = self.scaler.transform(X_val)
validation_data = (X_val[:, None, ...], y_val)

self.history = self.model.fit(
Expand Down

0 comments on commit 470e05b

Please sign in to comment.