Python: Updated boost to 1.58 - Kivy support in python wrapper

This commit is contained in:
Philippe Tillet
2015-08-14 22:09:54 -07:00
parent 8c7259bb3d
commit e912beaac3
2830 changed files with 14024 additions and 384984 deletions

10
python/external/sklearn/__init__.py vendored Normal file
View File

@@ -0,0 +1,10 @@
"""
The :mod:`sklearn.tree` module includes decision tree-based models for
classification and regression.
"""
from .tree import DecisionTreeRegressor
from .tree import ExtraTreeRegressor
from .export import export_graphviz
__all__ = ["DecisionTreeRegressor", "ExtraTreeRegressor"]