天天看點

成功解決preprocessing\label.py:151: DeprecationWarning: The truth value of an empty array is ambiguous

解決問題

preprocessing\label.py:151: DeprecationWarning: The truth value of an empty array is ambiguous. Returning False, but in future this will result in an error. Use `array.size > 0` to check that an array is not empty.

 if diff:

解決思路

preprocessing\label.py:151:

抛棄警告:空數組的真值是不明确的。傳回False,但以後将導緻錯誤。

解決方法

該問題是警告資訊,不處理亦可運作程式,隻需了解一下即可!但是,該庫未來的更新版本中,需要檢測是否為空數組,否則視為error!

使用`array.size > 0` 以檢查數組是否為空。

繼續閱讀