Commit Graph

  • e707c2d659 Replace line_inf.set_data([xs], [ys]) with line_inf.set_data(xs, ys) since xs and ys are already sequences main Aurélien Geron 2026-05-20 10:55:00 +12:00
  • a68b7b7b94 set_data() now expects sequences; fixes #242 Aurélien Geron 2026-05-20 10:33:37 +12:00
  • 1fa7649974 gs://my_bucket output fixed Aurélien Geron 2026-05-06 21:50:48 +12:00
  • 79d250ff98 Merge pull request #233 from yeghor/patch-1 Aurélien Geron 2026-02-22 19:36:13 +11:00
  • 39fd221fe0 Fix markdown formatting in math_linear_algebra.ipynb Romanov Yehor 2026-01-17 20:20:25 +02:00
  • e3f3f9e66d Merge pull request #203 from MohamedMostafa259/improve-output-layer-initializer Aurélien Geron 2025-10-29 10:09:24 +13:00
  • 04853be43c Add jupyter to environment.yml, fixes #226 Aurélien Geron 2025-10-28 14:51:29 +13:00
  • c9adaddfdf use glorot_normal for softmax output layer (#not in the book) Mohamed Mostafa 2025-10-19 12:21:43 +00:00
  • e2d422571f use glorot_normal for softmax output layer (#not in the book) Mohamed Mostafa 2025-10-19 12:17:13 +00:00
  • 216d30071d Remove the sample_weight argument when computing the similarities, fixes #125 Aurélien Geron 2025-10-15 20:50:32 +13:00
  • 209575fff9 Merge pull request #144 from vasigorc/fix/gpu-docker-image Aurélien Geron 2025-10-15 11:02:16 +13:00
  • b559f35268 Workaround Colab bug with code ending with underscore in Markdown, fixes #159 Aurélien Geron 2025-10-15 10:12:48 +13:00
  • bdc52e2b86 Install the Box2D library on Colab Aurélien Geron 2025-10-15 09:53:21 +13:00
  • 15e1a500a1 Fix: use glorot_normal for softmax output layer (#not in the book) Mohamed Mostafa 2025-10-14 10:58:43 +00:00
  • 08038cb1dc Colab now comes with Gymnasium preinstalled Aurélien Geron 2025-10-14 22:01:01 +13:00
  • 97bca8d727 Port the Hugging Face section to PyTorch since the Transformers library does not support TensorFlow anymore Aurélien Geron 2025-10-14 19:35:00 +13:00
  • ed94fc9968 Fix typo in hashing_ae Aurélien Geron 2025-10-14 18:47:33 +13:00
  • b34797caa5 Fix path to ridership data Aurélien Geron 2025-10-14 15:09:23 +13:00
  • 952314fc18 Remove broken table of contents Aurélien Geron 2025-10-14 14:39:31 +13:00
  • 020e33ca8c Merge pull request #202 from ShindeShivam/fix-wrong-mannual-labels Aurélien Geron 2025-10-14 12:07:20 +13:00
  • 616457726f Merge pull request #206 from ShindeShivam/bugfix/ch11-piecewise-schedule-fix Aurélien Geron 2025-10-14 11:50:27 +13:00
  • 8391321f34 Merge pull request #216 from ShindeShivam/fix-play_one_step-unpack Aurélien Geron 2025-10-14 11:47:03 +13:00
  • ddfc427002 Add missing norm_layer.adapt(X) line in Hyperband code, fixes #200 Aurélien Geron 2025-10-14 11:37:39 +13:00
  • 0185eb932e Handle case where mean=False in exercise 6 solution, fixes #209 Aurélien Geron 2025-10-14 11:22:33 +13:00
  • 77771c12a3 Remove IS_COLAB condition in cell 2, fixes #214 Aurélien Geron 2025-10-14 09:59:03 +13:00
  • 346a93a5bf Remove line break in equation, fixes #215 Aurélien Geron 2025-10-14 09:50:40 +13:00
  • 671bd455bd Remove conda defaults channel Aurélien Geron 2025-10-09 12:37:33 +13:00
  • 4c6609492d also in exercise Shivam Shinde 2025-09-08 12:05:49 +05:30
  • 8dc5bbdee0 Fix: correct play_one_step unpacking in chapter 18 Shivam Shinde 2025-09-06 13:05:13 +05:30
  • 2b9ef13fef Fix: correct unpacking order in play_one_step (truncated/info swapped) Shivam Shinde 2025-09-06 12:07:45 +05:30
  • a5c4373638 Changes done Shivam Shinde 2025-08-10 16:12:40 +05:30
  • 23700a227a Merge pull request #205 from ShindeShivam/bugfix/ch11-sgd-momentum-fix Aurélien Geron 2025-08-10 22:21:39 +12:00
  • b951a5e281 Merge pull request #210 from aram-cedarwood/05-svm-remove-sqrt Aurélien Geron 2025-08-10 21:39:21 +12:00
  • 6ba8ca5dab 05_support_vector_machines.ipynb, remove sqrt aram-cedarwood 2025-07-21 19:29:00 +02:00
  • e41c93dc74 Cleanup: Remove unintended file from PR Shivam Shinde 2025-07-18 18:57:35 +05:30
  • f12f0ab6d9 Fix: Adjusted PiecewiseConstantDecay schedule to match training steps on Fashion MNIST Shivam Shinde 2025-07-18 18:39:25 +05:30
  • 43131ddc44 Cleanup: Remove unintended file from PR Shivam Shinde 2025-07-18 18:21:34 +05:30
  • d78acc32a7 Fix: Remove momentum from SGD to show standard optimizer behavior Shivam Shinde 2025-07-18 18:03:42 +05:30
  • 7af252217d Fix incorrect manual labels for KMeans representative digits Shivam Shinde 2025-07-09 10:16:01 +05:30
  • f126048918 Fix wrong manual labels for representative digits in semi-supervised learning example Shivam Shinde 2025-07-09 09:52:18 +05:30
  • 8c641931ce Fix: Avoid pre-fitting final_estimator in StackingClassifier (Exercise 9) Shivam Shinde 2025-06-30 19:40:18 +05:30
  • c006d50b7d Use global step in learning schedule for Mini-batch gradient descent Aurélien Geron 2025-06-17 18:57:02 +12:00
  • a9f984ddc4 Merge pull request #192 from ShindeShivam/fix-learning-schedule Aurélien Geron 2025-06-17 18:29:26 +12:00
  • 584eb975eb Merge pull request #193 from ShindeShivam/fix-np-infty-bug Aurélien Geron 2025-06-17 18:20:07 +12:00
  • 29b225709b Final Update Shivam Shinde 2025-06-16 16:55:11 +05:30
  • 06e7d7ce8f Final Update Shivam Shinde 2025-06-16 16:47:14 +05:30
  • 8939a5c7f9 Clean kernelspec metadata Shivam Shinde 2025-06-16 16:40:55 +05:30
  • 63566f0e0b Fix small issue in chapter 4 (clean changes) Shivam Shinde 2025-06-16 16:28:47 +05:30
  • a2c613c317 Restore chapter4.ipynb to main branch version Shivam Shinde 2025-06-16 16:27:33 +05:30
  • f03632e0d3 Fix small issue in chapter 4 (clean changes) Shivam Shinde 2025-06-16 16:25:38 +05:30
  • 46f2d694af Restore chapter4.ipynb to main branch version Shivam Shinde 2025-06-16 16:23:50 +05:30
  • 801dc7ae39 Fix small issue in chapter 4 (clean changes) Shivam Shinde 2025-06-16 16:22:29 +05:30
  • 803d765480 Restore chapter4.ipynb to main branch version Shivam Shinde 2025-06-16 16:15:03 +05:30
  • 4f31e29ca1 Fix small issue in chapter 4 (clean changes) Shivam Shinde 2025-06-16 15:47:42 +05:30
  • d3f3fe02a7 Restore chapter4.ipynb to main branch version Shivam Shinde 2025-06-16 15:42:59 +05:30
  • b8beffcc82 Re-pushed cleaned notebook to fix large diff (cleared outputs) Shivam Shinde 2025-06-16 12:08:18 +05:30
  • 643d0370ae Clean notebook output for concise diff Shivam Shinde 2025-06-16 11:44:47 +05:30
  • 501f48613b Re-pushed cleaned notebook to fix large diff (cleared outputs) Shivam Shinde 2025-06-16 11:34:15 +05:30
  • 75101a2359 Re-pushed cleaned notebook to fix large diff (cleared outputs) Shivam Shinde 2025-06-16 11:28:59 +05:30
  • b2b136571f Fixes np.infty AttributeError by replacing with np.inf in Chapter 04 Shivam Shinde 2025-06-16 10:59:39 +05:30
  • 83c0c07718 Fix: use global step in learning schedule for mini-batch gradient descent Shivam Shinde 2025-06-08 14:20:01 +05:30
  • 6162d2f610 Replace repr() with str(), fixes #191 Aurélien Geron 2025-05-31 11:13:41 +12:00
  • a6289221b5 Better placeholders for code location in issue templates Aurélien Geron 2025-05-10 21:16:56 +12:00
  • fc78243996 Switch to structured issue templates Aurélien Geron 2025-05-10 21:05:48 +12:00
  • d3a4ee0543 Remove 'widgets' section in metadata, fixes #186 Aurélien Geron 2025-04-09 06:02:29 +12:00
  • 7650d94d95 Derivative of x^3 is 3x^2, not x^2, thanks @EricGarciaRos Aurélien Geron 2025-03-21 22:09:22 +13:00
  • 742e0cb6bf Always extract housing.tgz in case housing.csv is deleted, fixes #183 Aurélien Geron 2025-02-10 18:24:44 +13:00
  • ad51b1ef86 Update to support latest library versions Aurélien Geron 2025-02-09 17:06:22 +13:00
  • 9f365c40e6 Update to support latest library versions Aurélien Geron 2025-02-09 16:57:23 +13:00
  • 33faa21566 Gymnasium does not support accept-rom-license Aurélien Geron 2025-02-09 13:28:37 +13:00
  • f1187ea6cf Install latest protoc on Colab, and fix get_file() path issues in recent Keras versions Aurélien Geron 2025-02-09 13:27:56 +13:00
  • 408cb061c3 Fixes to work with latest TF versions Aurélien Geron 2025-02-09 13:26:33 +13:00
  • b6e646b6ad Remove redundant code Aurélien Geron 2025-02-09 13:24:58 +13:00
  • 8e6531d8bf Update custom estimators to latest Scikit-Learn API Aurélien Geron 2025-02-09 11:48:25 +13:00
  • 12ab3ff8ed Flatten coef_ before access to workaround variable result depending on Sklearn version Aurélien Geron 2025-02-08 22:40:48 +13:00
  • f08a0ecf6c Flatten coef_ before access to workaround variable result depending on Sklearn version Aurélien Geron 2025-02-08 22:39:11 +13:00
  • 1aae1ff3a2 Use target_col in to_seq2seq_dataset() Aurélien Geron 2025-02-08 22:32:29 +13:00
  • bf45e0dbd3 Switch to root_mean_squared_error() Aurélien Geron 2025-02-08 22:31:25 +13:00
  • 17c2fb5567 Switch to root_mean_squared_error() Aurélien Geron 2025-02-08 22:28:21 +13:00
  • 430afa1dd5 Switch to root_mean_squared_error() Aurélien Geron 2025-02-08 22:25:43 +13:00
  • c0a3da029a Switch to root_mean_squared_error(), and improve confidence interval code Aurélien Geron 2025-02-08 22:22:31 +13:00
  • 9bd4f4c23a Add missing outputs, fixes #164 Aurélien Geron 2024-10-09 09:26:31 +13:00
  • f0783bad30 Use tf_keras instead of Keras 3 Aurélien Geron 2024-10-06 17:21:01 +13:00
  • 9e7002c88a Use tf_keras instead of Keras 3 Aurélien Geron 2024-10-06 17:04:51 +13:00
  • f08e739537 Use tf_keras instead of Keras 3 Aurélien Geron 2024-10-06 16:27:54 +13:00
  • bd1ee43dc5 Use Keras 2 (via tf_keras) for this chapter, fixes #163 Aurélien Geron 2024-10-06 14:41:39 +13:00
  • c02e03e14f Update notebook to latest Colab library versions Aurélien Geron 2024-10-06 11:13:18 +13:00
  • 779848d82e Update notebook to latest Colab library versions Aurélien Geron 2024-10-05 19:53:13 +13:00
  • 9143aa2fc4 Add missing custom_objects in load_model() Aurélien Geron 2024-10-05 18:53:13 +13:00
  • 2c0de8de67 Save model using .keras extension Aurélien Geron 2024-10-05 18:38:44 +13:00
  • 326ac718f2 Update notebook to latest Colab library versions Aurélien Geron 2024-10-05 18:35:28 +13:00
  • 0d6496cf79 Update notebook to latest Colab library versions Aurélien Geron 2024-10-05 18:34:42 +13:00
  • 4d9eb70586 Fix import keras.layers for AlphaDropout Aurélien Geron 2024-10-05 18:30:46 +13:00
  • c2826cbd0b Update notebook to latest Colab library versions Aurélien Geron 2024-10-05 16:58:19 +13:00
  • bdad82649e Change cell from markdown to code Aurélien Geron 2024-10-04 22:39:02 +13:00
  • c694f7cfe4 Update notebook to latest Colab library versions Aurélien Geron 2024-10-04 22:23:05 +13:00
  • f6ea3e5613 refactor: Removed redundant line Vasile Gorcinschi 2024-06-22 15:18:57 -04:00
  • ecf5d35b88 fix: Dockerfile.gpu to use correct dependencies Vasile Gorcinschi 2024-06-21 21:48:54 -04:00
  • d2b4c73e97 Update code to latest version of Pandas, fixes #633 Aurélien Geron 2024-06-05 11:12:39 +12:00
  • 94b9351584 Merge branch 'main' of github.com:ageron/handson-ml3 Aurélien Geron 2024-06-03 23:39:37 +12:00