Skip to content

Commit 0af847b

Browse files
committed
Update DLwP link
1 parent 75daaaf commit 0af847b

9 files changed

+10
-10
lines changed

guides/ipynb/transfer_learning.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
" dataset.\n",
7878
"\n",
7979
"This is adapted from\n",
80-
"[Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python)\n",
80+
"[Deep Learning with Python](https://deeplearningwithpython.io/)\n",
8181
"and the 2016 blog post\n",
8282
"[\"building powerful image classification models using very little data\"](https://blog.keras.io/building-powerful-image-classification-models-using-very-little-data.html)."
8383
]

guides/ipynb/writing_a_custom_training_loop_in_tensorflow.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@
587587
"as real.\n",
588588
"\n",
589589
"For a much more detailed overview of how GANs works, see\n",
590-
"[Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python).\n",
590+
"[Deep Learning with Python](https://deeplearningwithpython.io/).\n",
591591
"\n",
592592
"Let's implement this training loop. First, create the discriminator meant to classify\n",
593593
"fake vs real digits:"

guides/ipynb/writing_a_training_loop_from_scratch.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@
579579
"as real.\n",
580580
"\n",
581581
"For a much more detailed overview of how GANs works, see\n",
582-
"[Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python).\n",
582+
"[Deep Learning with Python](https://deeplearningwithpython.io/).\n",
583583
"\n",
584584
"Let's implement this training loop. First, create the discriminator meant to classify\n",
585585
"fake vs real digits:"

guides/md/transfer_learning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ImageNet dataset, and retraining it on the Kaggle "cats vs dogs" classification
5656
dataset.
5757

5858
This is adapted from
59-
[Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python)
59+
[Deep Learning with Python](https://deeplearningwithpython.io/)
6060
and the 2016 blog post
6161
["building powerful image classification models using very little data"](https://blog.keras.io/building-powerful-image-classification-models-using-very-little-data.html).
6262

guides/md/writing_a_custom_training_loop_in_tensorflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ A GAN training loop looks like this:
678678
as real.
679679

680680
For a much more detailed overview of how GANs works, see
681-
[Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python).
681+
[Deep Learning with Python](https://deeplearningwithpython.io/).
682682

683683
Let's implement this training loop. First, create the discriminator meant to classify
684684
fake vs real digits:

guides/md/writing_a_training_loop_from_scratch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ A GAN training loop looks like this:
499499
as real.
500500

501501
For a much more detailed overview of how GANs works, see
502-
[Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python).
502+
[Deep Learning with Python](https://deeplearningwithpython.io/).
503503

504504
Let's implement this training loop. First, create the discriminator meant to classify
505505
fake vs real digits:

guides/transfer_learning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
dataset.
5252
5353
This is adapted from
54-
[Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python)
54+
[Deep Learning with Python](https://deeplearningwithpython.io/)
5555
and the 2016 blog post
5656
["building powerful image classification models using very little data"](https://blog.keras.io/building-powerful-image-classification-models-using-very-little-data.html).
5757
"""

guides/writing_a_custom_training_loop_in_tensorflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def train_step(x, y):
382382
as real.
383383
384384
For a much more detailed overview of how GANs works, see
385-
[Deep Learning with Python](https://www.manning.com/books/deep-learning-with-python).
385+
[Deep Learning with Python](https://deeplearningwithpython.io/).
386386
387387
Let's implement this training loop. First, create the discriminator meant to classify
388388
fake vs real digits:

templates/getting_started/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -672,8 +672,8 @@ See the following guides:
672672

673673
### What's the difference between `Model` methods `predict()` and `__call__()`?
674674

675-
Let's answer with an extract from
676-
[Deep Learning with Python, Second Edition](https://www.manning.com/books/deep-learning-with-python-second-edition?a_aid=keras):
675+
Let's answer with an extract from the book
676+
[Deep Learning with Python](https://deeplearningwithpython.io/):
677677

678678
> Both `y = model.predict(x)` and `y = model(x)` (where `x` is an array of input data)
679679
> mean "run the model on `x` and retrieve the output `y`." Yet they aren't exactly

0 commit comments

Comments
 (0)