Aurélien Geron

Results 284 comments of Aurélien Geron

Hi @chrisflip , Thanks for your question and sorry for the late reply. I see two options: 1. add one parameter per layer, e.g., `n_neurons1`, `n_neurons2`, etc. 2. add one...

Hi @saranyapuvvada , The error message indicates that the name 'SGDRegressor' is not defined. This is probably because it was not imported. Please run: ```python from sklearn.linear_model import SGDRegressor ```...

Hi @Yuvraj102 , Thanks for your feedback. That's just the URL's root directory (the full URL was too long to fit on a single line). The full URL is defined...

Hi @saranyapuvvada , I'm happy to help. What's the problem you are experiencing? Is it a bug? Or do you need clarification? Please provide a bit more context.

Hi @rmurphy2718 , Thanks for your question. In the 3rd edition (coming out in October), I no longer use keras.backend. You can see the code in [ageron/handson-ml3](https://github.com/ageron/handson-ml3). The reason I...

Hi @jinxiyu , Thanks for your feedback. If you are getting an SSL error after installing Python on MacOSX, then it's most likely because the SSL certificates are not installed...

Here we're not talking about training the model, but rather evaluating it. And we evaluate a model to decide whether it's good enough to deploy to production, or to compare...

@mertguvencli , please don't recommend this solution, it will destroy all SSL security. The correct solution is to install the root certificates. It's just a matter of opening a terminal...

Thanks for your detailed answer @pxl-th . I'm not sure whether my code example really makes sense, but it's the kind of API I would imagine, largely inspired from TF's...

Hi there! This PR looks great, is it still active?