python torch.nn.Module()のサブクラス内でのsuper(Model,self).__init__()とsuper().__init__(self)の違いについて super().__init__()ではなくてsuper(Model,self).__init__()を使用している理由に関して。super(Child, self).__init__() という使いかたはPython2.x系に対応するためのものでした。 2021.11.20 pythonPytorch機械学習深層学習