From 0f2d81498c8c3dee04875b087175c4749c923e7c Mon Sep 17 00:00:00 2001 From: Hanz Tantiangco <37241205+HanzTantiangco@users.noreply.github.com> Date: Mon, 21 Jun 2021 16:49:59 +0100 Subject: [PATCH] docs: add TODO in update_weights() function It was unclear that the variables within had to be filled out. --- project-bikesharing/my_answers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project-bikesharing/my_answers.py b/project-bikesharing/my_answers.py index 3e998ca6db..01f099d1dd 100755 --- a/project-bikesharing/my_answers.py +++ b/project-bikesharing/my_answers.py @@ -115,6 +115,8 @@ def update_weights(self, delta_weights_i_h, delta_weights_h_o, n_records): n_records: number of records ''' + + # TODO: Update the weights with gradient descent step self.weights_hidden_to_output += None # update hidden-to-output weights with gradient descent step self.weights_input_to_hidden += None # update input-to-hidden weights with gradient descent step