dimension = X.shape[1] # 这里的维度len(X)是矩阵的行的数目, 维度是列的数目 weight = np.full((dimension, 1), 0.1) # 权重向量, 向量一般是1D, 但这里实际上创建了2D张量 bias = 0 # 偏置值