Aurélien Geron
Aurélien Geron
I haven't run any benchmarks, so I don't know. However, you can try using `%timeit` to measure speed. To measure RAM usage, you could use [the `memory_profiler` package](https://pypi.org/project/memory-profiler/). If you...
Hi Blosberg, Thanks for your feedback. Check out issue #301, especially [this comment](https://github.com/ageron/handson-ml/issues/301#issuecomment-448853256) and the one after that. In short, `fetch_mldata()` is dead because it relied on a website that...
That's very helpful, thanks @Blosberg !
Hi @kailichou , I'm just tried both `fetch_openml("mnist_784")` and `keras.datasets.mnist.load_data()` and they worked fine. Perhaps you ran into a temporary server-side error? Could you please try again?
Bonjour @nganguenf , Comme le dit @Grimmys (merci !), la classe `CombinedAttributesAdder` est définie un peu plus tôt dans le livre. Vous pouvez aussi voir sa définition dans le notebook...
Hi @minertom , Thanks for your question, and for your kind words (I'm very glad you enjoy my book!). You guessed right: I'm assuming that the last byte of the...
Hi, thanks for your question, did you run the cell that creates the `income_cat` column? ```python housing["income_cat"] = pd.cut(housing["median_income"], bins=[0., 1.5, 3.0, 4.5, 6., np.inf], labels=[1, 2, 3, 4, 5])...
Hi @biswatig , Any feedback regarding this issue? Perhaps there's a space in the name of the column? Do you have the latest pandas version? Could you please ensure that...
Thanks @prabinlamsal19 , that's probably what happened, indeed. @biswatig , could you please confirm that the issue is resolved?
Hi @IgBell, Are you still experiencing this issue? I can't reproduce it. Perhaps try pulling the latest notebooks using `git pull`?