【d2l】【常见函数】【8】 super(self) 和 super(class, self)
python2 必须使用super(class, self), python3 两者都可以
问题来源
【动手学深度学习】https://zh-v2.d2l.ai/chapter_recurrent-modern/encoder-decoder.html
9.6 编码器-解码器架构
这个super没看懂,一般就是super(self)来着
问题解决
参考:https://www.runoob.com/python/python-func-super.html
原来是python2的写法,python3中也通用