From 6b091be4e0636306c570d1db83cd52437ef653ac Mon Sep 17 00:00:00 2001 From: Vlad Dracula Date: Tue, 28 Nov 2023 16:07:55 +1000 Subject: [PATCH] copy edit link to previous episode for gridsearch --- episodes/05-evaluate-predict-cnn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/05-evaluate-predict-cnn.md b/episodes/05-evaluate-predict-cnn.md index 5caf8f79..baf8869c 100644 --- a/episodes/05-evaluate-predict-cnn.md +++ b/episodes/05-evaluate-predict-cnn.md @@ -344,7 +344,7 @@ For instance, suppose you're tuning two hyperparameters: ## Tune Optimizer using Grid Search -In [Episode 04](./04-fit-cnn.md) we talked briefly about the `Adam` optimizer used in our `model.compile` discussion. Recall the optimizer refers to the algorithm with which the model learns to optimize on the provided loss function. +In [Episode 04 Compile and Train a Convolutional Neural Network](episodes/04-fit-cnn.md) we talked briefly about the `Adam` optimizer used in our `model.compile` discussion. Recall the optimizer refers to the algorithm with which the model learns to optimize on the provided loss function. Here we will use our introductory model to demonstrate how GridSearch is expressed in code to search for an optimizer.