Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python Svmlight Error: DeprecationWarning: using a non-integer number instead of an integer will result in an error in the future

I'm running python 2.7.5 with scikit_learn-0.14 on my Mac OSX Mountain Lion.

Everything I run a svmlight command however, I get the following warning:

DeprecationWarning: using a non-integer number instead of an integer will result in an error >in the future

like image 984
Brian Lin Avatar asked Sep 25 '13 01:09

Brian Lin


1 Answers

As answered here, it's Numpy 1.8.0 deprecation warning caused by indexing with non-integer in scikit-learn. It won't affect the results.

like image 53
Jeong-Yoon Lee Avatar answered Oct 09 '22 14:10

Jeong-Yoon Lee