1. 程式人生 > >專案中bug總結

專案中bug總結

一、invalid literal for int() with base 10: '293.02'

在進行陣列使用reduce求總和的時候,不能使用int()型別,應該使用float()。

二、raise ValueError("Unknown label type: %r" % y_type)

        Unknown label type: 'continuous'

在進行模型預測的時候,fit(x,y),y後面加上.astype 即可。

三、index 0 is out of bounds for axis 0 with size 0

自己程式碼寫錯了。很小的錯誤。

四、only integers, slices (`:`), ellipsis (`...`), numpy.newaxis (`None`) and integer or boolean arrays are valid indices

引數型號不符,強制轉換成相同型別即可。

五、index 0 is out of bounds for axis 0 with size 0

參考連結:https://stackoverflow.com/questions/29214017/index-0-is-out-of-bounds-for-axis-0-with-size-0