标签: python numpy neural-network matrix-multiplication
此代码段是否为
layer_1 = self.layer_0.dot(self.weights_0_1)
和这个一样吗?
layer_1 = np.dot(self.layer_0, self.weights_0_1)
答案 0 :(得分:1)
是:dot既可以作为numpy模块中的函数,也可以作为array对象的实例方法。
dot
numpy
array