Ostrzeżenie o przestarzeniu w programie ładującym svmlight w formacie scikit-learn

Dostaję nowe ostrzeżenie o przestarzałości w notatniku IPython, który napisałem, którego wcześniej nie widziałem. Widzę następujące rzeczy:

X,y = load_svmlight_file('./GasSensorArray/batch2.dat')
/Users/cpd/.virtualenvs/py27-ipython+pandas/lib/python2.7/site-packages/sklearn/datasets/svmlight_format.py:137: DeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
return _load_svmlight_file(f, dtype, multilabel, zero_based, query_id)
/Users/cpd/.virtualenvs/py27-ipython+pandas/lib/python2.7/site-packages/sklearn/datasets/svmlight_format.py:137: DeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
return _load_svmlight_file(f, dtype, multilabel, zero_based, query_id)
...

Jakieś przemyślenia na temat tego, co może być tutaj problemem? Przyjrzałem się jeszcze raz mojemu plikowi danych i na pierwszy rzut oka nie widzę żadnego oczywistego problemu. Nie jestem pewien, co zmieniłem w konfiguracji systemu, która by to spowodowała. Zainstalowałem v. 0.14.1 scikit-learn.

questionAnswers(2)

yourAnswerToTheQuestion