Open emmanuel-nwogu opened 1 year ago
There is a bug in split_validation(): At this line, we create cb_list based on save_models but we never pass it to model.evaluate(). This means that your model will never be saved no matter what you pass in for save_models.
split_validation()
cb_list
save_models
model.evaluate()
cc @muellerdo
You are absolutely right! Thanks for spotting this bug. :)
I will try to fix it, ASAP.
Best Regards, Dominik Müller
There is a bug in
split_validation()
: At this line, we createcb_list
based onsave_models
but we never pass it tomodel.evaluate()
. This means that your model will never be saved no matter what you pass in forsave_models
.cc @muellerdo