我有一只熊猫的数据,并将df[list_of_columns]作为X,df[[single_column]]作为Y传递给一个随机森林回归者。DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel(). probas = cfr.fit(trainset_X, trainset_Y).predict
我试图重塑一个张量Ma1,a2,a3,维数d1,d2,d3到矩阵Ma2,a1*a3维数d2,d1*d3。我试过但结果并不是应有的结果。(或另一个函数)我在矩阵乘积状态的上下文中使用它。给定维d1 x d2 x d3数组,如何将非相邻索引与reshape()结合起来,并维护依赖关系。也就是说,将3x2x2张量重塑为2x6矩阵,使行对应于第二个(或第三个)索引。如本例所示,简单的