From 30e3f6071bcc4e854f8b977d5f37ceb956d4927a Mon Sep 17 00:00:00 2001 From: kiransair <106319630+kiransair@users.noreply.github.com> Date: Thu, 29 Jun 2023 04:08:34 +0530 Subject: [PATCH] Fixed the broken link in functional_api.md (#1409) Fixed the broken link for customizing_what_happens_in_fit in functional_api.md --- guides/md/functional_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/md/functional_api.md b/guides/md/functional_api.md index 062feefdb9..e375e6f068 100644 --- a/guides/md/functional_api.md +++ b/guides/md/functional_api.md @@ -207,7 +207,7 @@ built using the functional API as for `Sequential` models. The `Model` class offers a built-in training loop (the `fit()` method) and a built-in evaluation loop (the `evaluate()` method). Note -that you can easily [customize these loops](/guides/customizing_what_happens_in_fit/) +that you can easily [customize these loops](https://keras.io/guides/customizing_what_happens_in_fit/) to implement training routines beyond supervised learning (e.g. [GANs](https://keras.io/examples/generative/dcgan_overriding_train_step/)).