scikit-learn/sklearn
Arturo Amor 89c835234e
DOC Point GradientBoosting towards HistGradientBoosting (#23340)
* Point GradientBoosting towards HistGradientBoosting on docstrings

* Point GradientBoosting towards HistGradientBoosting on examples

* Avoid the GB acronym

* Iter

* Apply suggestion from lesteve

* Apply suggestions from code review

Co-authored-by: Olivier Grisel <olivier.grisel@ensta.org>

* Format

* Apply suggestions from code review

Co-authored-by: Julien Jerphanion <git@jjerphan.xyz>

* Format

Co-authored-by: Olivier Grisel <olivier.grisel@ensta.org>
Co-authored-by: Julien Jerphanion <git@jjerphan.xyz>
2022-05-24 19:27:20 +02:00
..
__check_build MNT Applies black formatting to most of the code base (#18948) 2021-06-17 14:21:09 -04:00
_build_utils CI Fix scipy-dev for deprecated numpy.distutils (#22513) 2022-02-17 15:32:03 +01:00
_loss MNT Removes unneeded np imports in cython files (#23364) 2022-05-13 12:37:51 -04:00
cluster DOC: fix typo (#23406) 2022-05-18 17:04:22 +02:00
compose FIX ColumnTransformer.get_feature_names_out with string slices (#22913) 2022-03-31 15:04:20 +02:00
covariance DOC Fixes typo in empirical_covariance.py (#23441) 2022-05-21 15:36:31 -04:00
cross_decomposition API add intercept_ attribute to PLS estimators (#22015) 2022-05-02 16:27:40 +02:00
datasets Fix OpenML timeout (#23358) 2022-05-13 14:28:50 +02:00
decomposition DOC Improved clarity, consistency and formatting for `fastica`/`FastICA` docstrings (#23309) 2022-05-23 15:26:55 +02:00
ensemble DOC Point GradientBoosting towards HistGradientBoosting (#23340) 2022-05-24 19:27:20 +02:00
experimental ENH Improves error message when experimental flag is not imported (#23194) 2022-04-27 10:37:57 +02:00
externals BLD Monkeypatch windows build to stablize build (#22693) 2022-03-24 16:36:27 +01:00
feature_extraction DOC Ensures that img_to_graph passes numpydoc validation (#23398) 2022-05-17 21:36:01 +02:00
feature_selection FIX partial_fit from SelectFromModel doesn't validate the parameters (#23299) 2022-05-11 11:53:43 +02:00
gaussian_process MNT Combine multiple `isinstance` call (#23204) 2022-04-24 07:47:51 -04:00
impute MAINT Fix some typos (#23251) 2022-04-30 15:03:40 -04:00
inspection skip if matplotlib not installed (#23322) 2022-05-10 16:25:11 +02:00
linear_model MAINT Use check_scalar to validate scalar in: BayesianRidge (#23051) 2022-05-20 18:23:23 -04:00
manifold MNT cimport numpy as cnp in manifold (#23351) 2022-05-16 17:15:14 +02:00
metrics DOC Implement documentation suggestions pairwise distance (#23431) 2022-05-21 14:31:49 -04:00
mixture DOC Fixes docstring in BayesianGaussianMixture (#19243) 2022-04-23 15:03:59 -04:00
model_selection DOC/TST Clarify group order in GroupKFold and LeaveOneGroupOut (#22582) 2022-05-06 17:40:26 +02:00
neighbors MNT Use cimport numpy as cnp for sklearn/neighbors (#23350) 2022-05-14 10:50:45 -04:00
neural_network DOC Explains alpha scaling in MLP's docstring (#22151) 2022-02-19 12:35:02 +01:00
preprocessing ENH PolynomialFeatures better handle degree=0 (#23370) 2022-05-16 11:01:23 +02:00
semi_supervised TST replace pytest.warns(None) in test_label_propagation.py (#23010) 2022-04-04 15:09:46 +02:00
svm ENH Deprecate `class_weight_` in regression/single class models in SVM module (#22898) 2022-05-24 19:24:27 +02:00
tests DOC Ensures that sklearn.metrics._ranking.auc passes numpydoc validation (#23433) 2022-05-20 17:53:12 -04:00
tree FIX fix performance regression in trees with low-cardinality features (#23410) 2022-05-19 09:48:29 +02:00
utils Revert change in sklearn.extmath.util and fix randomized_svd benchmark (#23421) 2022-05-20 11:01:38 -04:00
__init__.py MNT bump version to 1.2 dev on main (#23222) 2022-04-27 11:02:50 +02:00
_config.py API Config: change default display to "diagram" (#22856) 2022-03-21 15:43:07 +01:00
_distributor_init.py MAINT Add _distributor_init.py (#15570) 2019-11-19 23:56:34 +01:00
_isotonic.pyx MNT Use cimport numpy as cnp in _isotonic.pyx (#23303) 2022-05-09 11:58:17 -04:00
_min_dependencies.py CI Use lock files for CircleCI doc builds (#23429) 2022-05-24 16:19:55 +02:00
base.py Update model persistence URL (#23402) 2022-05-18 17:28:08 +02:00
calibration.py DEP calibration_curve normalize parameter in calibration.py (#23095) 2022-04-25 14:08:12 -04:00
conftest.py ENH Adds FeatureHasher support to pypy (#23023) 2022-04-08 19:34:20 +02:00
discriminant_analysis.py MNT Combine multiple `isinstance` call (#23204) 2022-04-24 07:47:51 -04:00
dummy.py FIX DummyRegressor overriding constant (#22486) 2022-02-15 17:46:54 +01:00
exceptions.py MAINT Remove deprecated exceptions for 1.1 (#22659) 2022-03-03 10:31:50 +01:00
isotonic.py DOC Ensures that isotonic_regression passes numpydoc validation (#22475) 2022-02-13 21:09:53 -05:00
kernel_approximation.py ENH Adds get_feature_names_out for AdditiveChi2Sampler (#22137) 2022-03-08 15:02:18 +01:00
kernel_ridge.py MNT remove _pairwise attribute (#21594) 2022-02-09 16:58:01 +01:00
multiclass.py FIX Fixes OneVsOneClassifier.predict for Estimators with only predict_proba (#22604) 2022-03-18 17:23:50 +01:00
multioutput.py DOC make a doctest more stable in MultiOutputClassifier (#22307) 2022-01-26 19:19:43 +01:00
naive_bayes.py MNT Remove utf-8 encoding declarations (#21260) 2022-03-14 17:59:36 +01:00
pipeline.py FIX Feature Union: Checking if feautre union is fitted fails (#22953) 2022-04-05 11:01:12 +02:00
random_projection.py MNT Some clean-up in the random_projection module (#22761) 2022-03-16 11:09:14 +01:00
setup.py MRG Common Private Loss Module with tempita (#20567) 2021-11-26 16:45:41 +01:00