解决问题
F:\Program Files\Python\Python36\lib\site-packages\sklearn\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:
解决思路
错误地址:F:\Program Files\Python\Python36\lib\site-packages\sklearn\preprocessing\label.py:151
丢弃警告:空数组的真值不明确。返回false,但在将来这将导致错误。使用“array.size>0”检查数组是否为空。
解决方法
该问题是警告信息,不处理亦可运行程序,只需理解一下即可!空数组的真值不明确。返回false,但在将来这将导致错误。该库未来的升级ban版本中,需要采用“array.size>0”检查数组是否为空。