X = X.reshape((len(X), 1)) #通过reshape方法把向量转换为矩阵, len函数返回样本个数 y = y.reshape((len(y), 1)) #通过reshape方法把向量转换为矩阵, len函数返回样本个数 print ("张量X的阶:", X.ndim) print ("张量X的形状:", X.shape) print ("张量X的内容:", X)