如何修改机器学习实例错误bad input shape()

2025-04-04 12:41:08

1、1.嚼但匙噻首先将训练输入的数据转变为数组修改前代码:input_data_encoded[i] = int(labe造婷用痃l_encoder[count].transform(input_data[i]))修改后代码:input_data_encoded[i] = int(label_encoder[count].transform([input_data[i]]))

如何修改机器学习实例错误bad input shape()
如何修改机器学习实例错误bad input shape()

2、2.经过上一步的操作会出现数组大小错误Reshape your data either using array.reshape(-1, 1) if your data has 锾攒揉敫a single feature or array.reshape(1, -1) if it contains a single sample.

如何修改机器学习实例错误bad input shape()

3、3.最后将数组转为一维数组,满足predict函数对数组大小的要求input_data_encoded = np.array(input_data_encoded)input_data_encoded = input_data_encoded.reshape(1, len(input_data))

如何修改机器学习实例错误bad input shape()
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢