【发布时间】:2019-06-24 20:08:29
【问题描述】:
我有这些用于多元回归的梯度下降算法,但它提出了一个
ValueError: operands could not be broadcast together with shapes (3,) (3,140).
我查看了有关 stackoverflow 上广播错误的其他答案,并且文档中说矩阵的维度必须相同或其中一个矩阵必须为 1。但是我怎样才能使我的 theta 具有相同的维度。
请不要将其标记为重复。
我的 x 有暗淡 (140,3) ,y 有 (140,1),alpha=0.0001
def find_mse(x,y,theta):
return np.sum(np.square(np.matmul(x,theta)-y))*1/len(x)
def gradientDescent(x,y,theta,alpha,iteration):
theta=np.zeros(x.shape[1])
m=len(x)
gradient_df=pd.DataFrame(columns=['coeffs','mse'])
for i in range(iteration):
gradient = (1/m) * np.matmul(x.T, np.matmul(x, theta) - y)
theta = np.mat(theta) - alpha * gradient
cost = compute_cost(X, y, theta)
gradient_df.loc[i] = [theta,cost]
return gradient_df
【问题讨论】:
-
欢迎来到 SO;我们不可能仅仅通过阅读您的代码来提供帮助,请参阅How to create a Minimal, Complete, and Verifiable example
-
具体是哪一行报错?
-
循环中的第二行....正在生成错误。 theta=theta-alpha*梯度
标签: machine-learning linear-regression gradient-descent