提交

1211 次代码提交

作者 SHA1 备注 提交日期
Aurélien Geron e707c2d659 Replace line_inf.set_data([xs], [ys]) with line_inf.set_data(xs, ys) since xs and ys are already sequences 2026-05-20 10:55:00 +12:00
Aurélien Geron a68b7b7b94 set_data() now expects sequences; fixes #242 2026-05-20 10:33:37 +12:00
Aurélien Geron 1fa7649974 gs://my_bucket output fixed 2026-05-06 21:53:51 +12:00
Aurélien Geron 79d250ff98 Merge pull request #233 from yeghor/patch-1
Fix markdown formatting in math_linear_algebra.ipynb
2026-02-22 19:36:13 +11:00
Romanov Yehor 39fd221fe0 Fix markdown formatting in math_linear_algebra.ipynb 2026-01-17 20:20:25 +02:00
Aurélien Geron e3f3f9e66d Merge pull request #203 from MohamedMostafa259/improve-output-layer-initializer
Fix: Override output layer initializer to glorot_normal for softmax compatibility
2025-10-29 10:09:24 +13:00
Aurélien Geron 04853be43c Add jupyter to environment.yml, fixes #226 2025-10-28 14:51:29 +13:00
Mohamed Mostafa c9adaddfdf use glorot_normal for softmax output layer (#not in the book) 2025-10-19 12:21:43 +00:00
Mohamed Mostafa e2d422571f use glorot_normal for softmax output layer (#not in the book) 2025-10-19 12:17:13 +00:00
Aurélien Geron 216d30071d Remove the sample_weight argument when computing the similarities, fixes #125 2025-10-15 20:51:10 +13:00
Aurélien Geron 209575fff9 Merge pull request #144 from vasigorc/fix/gpu-docker-image
Fix Dockerfile.gpu to handle CUDA 11.2.2 correctly
2025-10-15 11:02:16 +13:00
Aurélien Geron b559f35268 Workaround Colab bug with code ending with underscore in Markdown, fixes #159 2025-10-15 10:12:48 +13:00
Aurélien Geron bdc52e2b86 Install the Box2D library on Colab 2025-10-15 09:53:21 +13:00
Mohamed Mostafa 15e1a500a1 Fix: use glorot_normal for softmax output layer (#not in the book) 2025-10-14 10:58:43 +00:00
Aurélien Geron 08038cb1dc Colab now comes with Gymnasium preinstalled 2025-10-14 22:01:01 +13:00
Aurélien Geron 97bca8d727 Port the Hugging Face section to PyTorch since the Transformers library does not support TensorFlow anymore 2025-10-14 19:35:00 +13:00
Aurélien Geron ed94fc9968 Fix typo in hashing_ae 2025-10-14 18:47:33 +13:00
Aurélien Geron b34797caa5 Fix path to ridership data 2025-10-14 15:09:23 +13:00
Aurélien Geron 952314fc18 Remove broken table of contents 2025-10-14 14:39:31 +13:00
Aurélien Geron 020e33ca8c Merge pull request #202 from ShindeShivam/fix-wrong-mannual-labels
Fix manual labels for KMeans representative digits (was causing ~7% accuracy) semi-supervised learning example
2025-10-14 12:07:20 +13:00
Aurélien Geron 616457726f Merge pull request #206 from ShindeShivam/bugfix/ch11-piecewise-schedule-fix
Fix: Adjusted PiecewiseConstantDecay schedule to match training steps on Fashion MNIST
2025-10-14 11:50:27 +13:00
Aurélien Geron 8391321f34 Merge pull request #216 from ShindeShivam/fix-play_one_step-unpack
Fix: correct unpacking order in play_one_step (truncated/info swapped)
2025-10-14 11:47:03 +13:00
Aurélien Geron ddfc427002 Add missing norm_layer.adapt(X) line in Hyperband code, fixes #200 2025-10-14 11:37:39 +13:00
Aurélien Geron 0185eb932e Handle case where mean=False in exercise 6 solution, fixes #209 2025-10-14 11:22:33 +13:00
Aurélien Geron 77771c12a3 Remove IS_COLAB condition in cell 2, fixes #214 2025-10-14 09:59:03 +13:00
Aurélien Geron 346a93a5bf Remove line break in equation, fixes #215 2025-10-14 09:50:40 +13:00
Aurélien Geron 671bd455bd Remove conda defaults channel 2025-10-14 09:46:28 +13:00
Shivam Shinde 4c6609492d also in exercise 2025-09-08 12:05:49 +05:30
Shivam Shinde 8dc5bbdee0 Fix: correct play_one_step unpacking in chapter 18 2025-09-06 13:05:13 +05:30
Shivam Shinde 2b9ef13fef Fix: correct unpacking order in play_one_step (truncated/info swapped) 2025-09-06 12:07:45 +05:30
Shivam Shinde a5c4373638 Changes done 2025-08-10 16:12:40 +05:30
Aurélien Geron 23700a227a Merge pull request #205 from ShindeShivam/bugfix/ch11-sgd-momentum-fix
Fix: Remove momentum from SGD to show standard optimizer behavior
2025-08-10 22:21:39 +12:00
Aurélien Geron b951a5e281 Merge pull request #210 from aram-cedarwood/05-svm-remove-sqrt
05_support_vector_machines.ipynb, remove sqrt
2025-08-10 21:39:21 +12:00
aram-cedarwood 6ba8ca5dab 05_support_vector_machines.ipynb, remove sqrt
root_mean_squared_error() already takes the sqrt. No need to do it again
2025-07-21 19:29:00 +02:00
Shivam Shinde e41c93dc74 Cleanup: Remove unintended file from PR 2025-07-18 18:57:35 +05:30
Shivam Shinde f12f0ab6d9 Fix: Adjusted PiecewiseConstantDecay schedule to match training steps on Fashion MNIST 2025-07-18 18:39:25 +05:30
Shivam Shinde 43131ddc44 Cleanup: Remove unintended file from PR 2025-07-18 18:21:34 +05:30
Shivam Shinde d78acc32a7 Fix: Remove momentum from SGD to show standard optimizer behavior 2025-07-18 18:03:42 +05:30
Shivam Shinde 7af252217d Fix incorrect manual labels for KMeans representative digits 2025-07-09 10:26:17 +05:30
Shivam Shinde f126048918 Fix wrong manual labels for representative digits in semi-supervised learning example 2025-07-09 09:52:18 +05:30
Shivam Shinde 8c641931ce Fix: Avoid pre-fitting final_estimator in StackingClassifier (Exercise 9) 2025-06-30 19:40:18 +05:30
Aurélien Geron c006d50b7d Use global step in learning schedule for Mini-batch gradient descent 2025-06-17 18:57:02 +12:00
Aurélien Geron a9f984ddc4 Merge pull request #192 from ShindeShivam/fix-learning-schedule
Fix: Use global step in learning schedule for Mini-batch gradient descent
2025-06-17 18:29:26 +12:00
Aurélien Geron 584eb975eb Merge pull request #193 from ShindeShivam/fix-np-infty-bug
Fix Critical Colab Crash: Replace Removed np.infty with np.inf (NumPy 2.0 Update)
2025-06-17 18:20:07 +12:00
Shivam Shinde 29b225709b Final Update 2025-06-16 16:55:11 +05:30
Shivam Shinde 06e7d7ce8f Final Update 2025-06-16 16:47:14 +05:30
Shivam Shinde 8939a5c7f9 Clean kernelspec metadata 2025-06-16 16:40:55 +05:30
Shivam Shinde 63566f0e0b Fix small issue in chapter 4 (clean changes) 2025-06-16 16:28:47 +05:30
Shivam Shinde a2c613c317 Restore chapter4.ipynb to main branch version 2025-06-16 16:27:33 +05:30
Shivam Shinde f03632e0d3 Fix small issue in chapter 4 (clean changes) 2025-06-16 16:25:38 +05:30