You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on the results I get I assume that build_merged is trained on the complete training_dataset supplied, while build best is trained only on a subset, I assume generated by the split_strategy but when I am using a 10-fold criss validation which of the 10 fold is it split by?
# Build (re-Train) and save the best model.
build_best(buildconfig, "target/best.pkl")
# Build (Train) and save the model on the merged train+test data.
build_merged(buildconfig, "target/merged.pkl")
The text was updated successfully, but these errors were encountered:
I just wanted to ask what the difference between
build_best
versusbuild_merged
is, when there is no testset specified such as hereBased on the results I get I assume that build_merged is trained on the complete
training_dataset
supplied, while build best is trained only on a subset, I assume generated by thesplit_strategy
but when I am using a 10-fold criss validation which of the 10 fold is it split by?The text was updated successfully, but these errors were encountered: