Net类的参数中nn.Module表示什么,super()调用的是哪个父类?以及在后面调用时为什么不需要调用forward函数?
nn.Module是所有神经网络模块的基类,所以要继承该类,super调用的也是它。在执行
out = net(input_data)时,调用的就是forward函数。