0
當我使用scikit學習分類模型不一致的行爲的情況下,空白
class=modelftr.predict(X_t)
類變量返回
>>class
array(['class1'],dtype='<U47')
而當我有預測類中定義的變量作爲
x=np.ndarray([],dtype='<U47')
主叫x[0]
個回報
Traceback (most recent call last):
File "", line 1, in
IndexError: too many indices for array
當我定義一個變量:
class=np.ndarray([''],dtype='<U47')
誤差產生的:
Traceback (most recent call last):
File "", line 1, in
TypeError: an integer is required
爲什麼這樣的行爲?
最後的錯誤是在聲明本身時產生的,我不確定,但我覺得dtype是負責任的。 –