我正在使用flask中的机器模型创建一个简单的API。出现以下错误。
file1 = open('ash.txt','w+')
file1.write(str(msg))
data = file1
vect = cv.transform(data).toarray()
my_prediction = clf.predict(vect)
#print(my_prediction)
if np.any(my_prediction) == 1:
return jsonify("y")
elif np.any(my_prediction) == 0:
return jsonify("naa")
错误:
ValueError:找到的数组带有0个样本(shape =(0,8672)),而最少需要1个。
味精取自网址
@app.route('/predict/<msg>')
def predict(msg,method = ['POST']):