scikit-learn: machine learning in Python. Please feel free to ask specific questions about scikit-learn. Please try to keep the discussion focused on scikit-learn usage and immediately related open source projects from the Python ecosystem.
validation_curve
does not really profit from multithreading/multiprocessing. I get almost same results on intel i7 (4 cores) and intel xeon (24 cores). The problem is that if the validation curve runs on the xeon machines.. it uses all cores and the machine is overloaded, which makes no sense, really :)
conda install numpy scipy cython matplotlib pytest flake8 sphinx sphinx-gallery
or something like that
mkl
(from conda or pip)
cd doc
make html
should work all OS I think
_build/html
folder and you can search for the index.html
sklearn/metrics/pairwise.py
. My question is, are the examples run in the doc building process and output is generated or I am supposed to manually write the output of the example in the docstring of a function?
KDTree
regarding the issue. But I looked into sklearn/neighbors/kd_tree.pyx
and it looks like KDTree
is inheriting its docstring from BinaryTree
. So can someone tell me an elegant way to append my note docstring to the inherited docstring of KDTree
or if I could do something else to solve this issue.