Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn committed May 13, 2021
1 parent 470e05b commit 26cfdb4
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 @@ -238,7 +238,7 @@ def load(self, filename):
# clf = PLSRegression(max_degree + 1)
# clf.fit(XS_train, y_train)
clf = ContinuumModel(verbose=True, loss="mse")
history = clf.fit(XS_train, y_train, validation_data=(X_validate, y_validate))
history = clf.fit(X_train, y_train, validation_data=(X_validate, y_validate))

clf.model.save("model.dat")

Expand Down

0 comments on commit 26cfdb4

Please sign in to comment.