深度學習入門——單層神經網絡實現

import numpy as np X = np.array([1, 2]) print(X.shape) W = np.array([[1, 3, 5], [2, 4, 6]]) print(W.shape) Y = np.dot(X, W) print(Y)
相關文章
相關標籤/搜索