我在R中有一个小的(8 * 8)图像数组,可用于Keras。我希望按比例缩放它们,但是会遇到无法解释的错误。
> x <- array(runif(4406 * 8 * 8 * 1), dim=c(4406,8,8,1) )
> mn <- apply(x, 2, mean)
> std <- apply(x, 2, sd)
> scale(x, center = mn, scale = std)
Error in scale.default(x, center = mn, scale = std) :
length of 'center' must equal the number of columns of 'x'
据我所知ncol
的{{1}}是x
,而8
的{{1}}是length
。我想念什么?我应该如何缩放这些数据?
center