ageron / handson-ml

⛔️ DEPRECATED – See https://github.com/ageron/handson-ml3 instead.
Apache License 2.0
25.14k stars 12.91k forks source link

Ch3: Implementing Cross-Validation #605

Open shivan-s opened 3 years ago

shivan-s commented 3 years ago

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.

qzy8 commented 2 years ago

Thank you very much!