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

Keras callbacks #398

Open
wants to merge 2 commits into
base: devel
Choose a base branch
from
Open
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
Next Next commit
db callbacks error
jvpoulos committed Oct 13, 2022
commit a330f5357cdd3e8f0ce2dae11a2da24dff65a0b1
2 changes: 1 addition & 1 deletion R/Lrnr_gru_keras.R
Original file line number Diff line number Diff line change
@@ -186,7 +186,7 @@ Lrnr_gru_keras <- R6Class(
y = args$y,
batch_size = args$batch_size,
epochs = args$epochs,
callbacks = callbacks,
callbacks = args$callbacks,
verbose = verbose,
shuffle = FALSE
)
2 changes: 1 addition & 1 deletion R/Lrnr_lstm_keras.R
Original file line number Diff line number Diff line change
@@ -184,7 +184,7 @@ Lrnr_lstm_keras <- R6Class(
y = args$y,
batch_size = args$batch_size,
epochs = args$epochs,
callbacks = callbacks,
callbacks = args$callbacks,
verbose = verbose,
shuffle = FALSE
)