Aurélien Geron
Aurélien Geron
Hi @ML-magazine , thanks for your question. The link to the full code does not work. Could you please paste the full URL here? Also, could you please make sure...
Hi @Abhishek689 , There's a slash `/` missing at the end of the `DOWNLOAD_ROOT` string: ```python DOWNLOAD_ROOT = "https://raw.githubusercontent.com/ageron/handson-ml/master/" ```
Hi @VikingHenk, Thanks for your question. Generally, when people have SSL issues when using Python 3.6+ on MacOSX, it's due to a missing step when installing Python. Check out this...
Hi @Samrat666 , Thanks for your question, I should have added labels for these axes. The horizontal axis represents the income category: from 1.0 (lowest income) to 5.0 (highest income)....
Hi @Samrat666 , Thanks for your question. A splitter generates multiple train/test splits of the same dataset. For example, try running this code, which uses a simple `ShuffleSplit`: ```python import...
Hi @r-ichi , Thanks for your feedback. Could you please indicate which versions you are using for your OS, Python, Pandas, NumPy and Scikit-Learn?
Sorry I didn't get back to you. Did you solve this issue?
Hi @EmmS21 , Thanks for your question. I think you're missing a "d" in "handson-ml", in the URL. Hope this helps.
Hi @qinhanmin2014 , Great suggestion, thanks a lot! Apparently, this parameter was added in Scikit-Learn 0.18, it wasn't there when I started writing the book, I wasn't aware of it....
Hi @navctns , This might be a duplicate of #347, could you please check out my answers in that issue? Hope this helps!