- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
def cal_cost(theta,X,y):
m = len(y)
predictions = X.dot(theta)
cost = (1/2*m) * np.sum(np.square(predictions-y))
return cost
def minibatch_gradient_descent(X,y,theta,learning_rate=0.01,iterations=10,batch_size =20):
m = len(y)
cost_history = np.zeros(iterations)
#n_batches = int(m/batch_size)
for it in range(iterations):
cost =0.0
indices = np.random.permutation(m)
X = X[indices]
y = y[indices]
for i in range(0,m,batch_size):
X_i = X[i:i+batch_size]
y_i = y[i:i+batch_size]
X_i = np.c_[np.ones(len(X_i)),X_i]
prediction = np.dot(X_i,theta)
theta = theta -(1/m)*learning_rate*( X_i.T.dot((prediction - y_i)))
cost += cal_cost(theta,X_i,y_i)
cost_history[it] = cost
return theta, cost_history
theta = np.zeros((X_train.shape[1], 1))
minibatch_gradient_descent(X_train,y_train,theta)
当我运行上面的代码时,我收到以下错误:
ValueError: shapes (20,14) and (13,1) not aligned: 14 (dim 1) != 13 (dim 0)
X_train.shape 为 (404,13),y_train.shape 为 (404,1)。我正在更新 theta 的值,但它仍然给我错误。
请帮忙。
最佳答案
看起来您的错误发生在 prediction = np.dot(X_i,theta)
中。如果你检查X_i
的形状,它将打印出(20,14)
。同样,如果您检查 theta
的形状,它将打印出 (13,1)
。现在您可以明白为什么不能计算 X_i
和 theta
的点积了。由于您使用 X_i = np.c_[np.ones(len(X_i)),X_i]
向 X_i
添加了附加列,因此其尺寸已更改(最初是是 (20,13) )。因此,您需要向 theta
数组添加一行,以使 theta
的维度为 (14,1)
。
关于python - ValueError : shapes (20, 14) 和 (13,1) 未对齐 : 14 (dim 1) ! = 13(暗淡 0),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59005258/
我目前正在开发的应用程序使用很多 ImageViews 作为按钮。这些按钮上的图形使用 Alpha channel 淡出按钮的边缘,使它们看起来不规则。目前,我们必须为每个按钮生成 2 个图形(1 个
我正在尝试将 3 dim numpy 数组减少为 2 dim 数组,但除了将其放入 for 循环之外想不出其他方法,这会花费太多时间。下面是我的代码片段。 train_dataset 是一个 3 维形
当我的 ListView 中的一个项目被点击时,我会在一个对话框中弹出几个选项供用户选择。但是,在不同的情况下,我想禁用一个或多个选项,以便用户无法选择它们。这是一些代码。 public class
是否可以在不使用 strlen、使用递归和这个定义的情况下就地反转字符串? void reverse(char *s, int dim); 我唯一能做的就是: void reverse(char *s
所以我试图实现 (a * b) * (M * a.T) 但我不断收到 ValueError 。由于我是 python 和 numpy 函数的新手,因此帮助会很棒。提前致谢。 import numpy.
我正在做机器学习作业,并且正在制作逻辑回归下降梯度和逻辑回归成本。我的功能是这样的: def calcLogRegressionCost(X, y, theta): #X is the fea
def cal_cost(theta,X,y): m = len(y) predictions = X.dot(theta) cost = (1/2*m) * np.s
我有 2 个 numpy 数组: x= np.linspace(1,10,100) + np.random.randn(n)/5 y = np.sin(x)+x/6 + np.random.randn
我是一名优秀的程序员,十分优秀!