handson-ml
handson-ml copied to clipboard
Ch3: Implementing Cross-Validation
In the line:
skfolds = StratifiedKFold(n_splits=3, random_state=42)
we need to implement shuffle=True parameter since the default of shuffle is set to False.
Just something small, but hope it helps.
Thank you very much!