Question: What exactly does Pytorch super(My_Neural_Network,self).__init__() do such that we need to include it in all Neural networks init() method?
After looking up online, all I found is: It initializes some special properties that are required for Neural Network but couldn't find any solid answer that describes in detail.
ABCDofDataScience t1_isi9ke4 wrote
Reply to [D] Simple Questions Thread by AutoModerator
Question: What exactly does Pytorch super(My_Neural_Network,self).__init__() do such that we need to include it in all Neural networks init() method?
After looking up online, all I found is: It initializes some special properties that are required for Neural Network but couldn't find any solid answer that describes in detail.