/usr/lib/python3/dist-packages/sklearn/lda.py is in python3-sklearn 0.17.0-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 | import warnings
warnings.warn("lda.LDA has been moved to "
"discriminant_analysis.LinearDiscriminantAnalysis "
"in 0.17 and will be removed in 0.19", DeprecationWarning)
from .discriminant_analysis import LinearDiscriminantAnalysis as LDA
|