Skip to content

Commit

Permalink
Fixed callback passing bug in split_validation() - Closes #168
Browse files Browse the repository at this point in the history
  • Loading branch information
muellerdo committed May 10, 2023
1 parent ea16f23 commit 8f2b323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miscnn/evaluation/split_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def split_validation(sample_list, model, percentage=0.2, epochs=20,
else : cb_list = callbacks
# Run training & validation
history = model.evaluate(training, validation, epochs=epochs,
iterations=iterations, callbacks=callbacks)
iterations=iterations, callbacks=cb_list)
# Initialize evaluation directory
create_directories(evaluation_path)
# Draw plots for the training & validation
Expand Down

0 comments on commit 8f2b323

Please sign in to comment.