Hi
I have a question about “super().build(input_shape)” in the code of the Lab3 of the Week 3.
To be specific, this is found in the link below:
In the given code, we have 2 kinds of super() function.
I understand that we need to have super().__init__()
in the first definition __init__()
in the Class statement to give access to methods and properties of a parent or sibling class.
Nevertheless, I have no clue what the second ‘super()’ function is doing in the definition of ‘build()’ function. More specifically,
super().build(input_shape)
What is the purpose of this?
And moreover, why don’t we see this in the W1 Assignment code?
Thanks
Kind regards
Michio