html_url
stringlengths
57
57
labels
listlengths
1
6
text
stringlengths
32
258k
issue_number
int64
22.4k
33k
https://github.com/scikit-learn/scikit-learn/issues/26128
[ "New Feature", "Performance", "Needs Decision", "Needs Benchmarks", "module:ensemble", "Breaking Change" ]
HistGradientBoosting counts and sample weights Related issues: #25210 ### Current State `HistGradientBootingClassifier` and `HistGradientBootingRegressor` both: - Calculate the sample size `count` in histograms - Use `count` for splitting (mostly excluding split candidates) - Save the `count` in the final trees and u...
26,128
https://github.com/scikit-learn/scikit-learn/issues/26128
[ "New Feature", "Performance", "Needs Decision", "Needs Benchmarks", "module:ensemble", "Breaking Change" ]
HistGradientBoosting counts and sample weights Related issues: #25210 ### Current State `HistGradientBootingClassifier` and `HistGradientBootingRegressor` both: - Calculate the sample size `count` in histograms - Use `count` for splitting (mostly excluding split candidates) - Save the `count` in the final trees and u...
26,128
https://github.com/scikit-learn/scikit-learn/issues/26116
[ "New Feature", "module:metrics" ]
Changing classification_report to also output the number of predictions along with the support. ### Describe the workflow you want to enable The current [`classification_report`](https://github.com/scikit-learn/scikit-learn/blob/0eb23ff7b80eafbea9578568a5407ebe5072a11a/sklearn/metrics/_classification.py#L2405) return...
26,116
https://github.com/scikit-learn/scikit-learn/issues/26116
[ "New Feature", "module:metrics" ]
Changing classification_report to also output the number of predictions along with the support. ### Describe the workflow you want to enable The current [`classification_report`](https://github.com/scikit-learn/scikit-learn/blob/0eb23ff7b80eafbea9578568a5407ebe5072a11a/sklearn/metrics/_classification.py#L2405) return...
26,116
https://github.com/scikit-learn/scikit-learn/issues/26116
[ "New Feature", "module:metrics" ]
Changing classification_report to also output the number of predictions along with the support. ### Describe the workflow you want to enable The current [`classification_report`](https://github.com/scikit-learn/scikit-learn/blob/0eb23ff7b80eafbea9578568a5407ebe5072a11a/sklearn/metrics/_classification.py#L2405) return...
26,116
https://github.com/scikit-learn/scikit-learn/issues/26116
[ "New Feature", "module:metrics" ]
Changing classification_report to also output the number of predictions along with the support. ### Describe the workflow you want to enable The current [`classification_report`](https://github.com/scikit-learn/scikit-learn/blob/0eb23ff7b80eafbea9578568a5407ebe5072a11a/sklearn/metrics/_classification.py#L2405) return...
26,116
https://github.com/scikit-learn/scikit-learn/issues/26116
[ "New Feature", "module:metrics" ]
Changing classification_report to also output the number of predictions along with the support. ### Describe the workflow you want to enable The current [`classification_report`](https://github.com/scikit-learn/scikit-learn/blob/0eb23ff7b80eafbea9578568a5407ebe5072a11a/sklearn/metrics/_classification.py#L2405) return...
26,116
https://github.com/scikit-learn/scikit-learn/issues/26116
[ "New Feature", "module:metrics" ]
Changing classification_report to also output the number of predictions along with the support. ### Describe the workflow you want to enable The current [`classification_report`](https://github.com/scikit-learn/scikit-learn/blob/0eb23ff7b80eafbea9578568a5407ebe5072a11a/sklearn/metrics/_classification.py#L2405) return...
26,116
https://github.com/scikit-learn/scikit-learn/issues/26114
[ "Documentation" ]
ElasticNet does not support sparse matrices ### Describe the bug Documentation says that I can use ElasticNet with `ndarray, sparse matrix`, but I can't make it work with sparse. ### Steps/Code to Reproduce ``` from scipy.sparse import csr_matrix from sklearn.linear_model import ElasticNet import numpy as ...
26,114
https://github.com/scikit-learn/scikit-learn/issues/26114
[ "Documentation" ]
ElasticNet does not support sparse matrices ### Describe the bug Documentation says that I can use ElasticNet with `ndarray, sparse matrix`, but I can't make it work with sparse. ### Steps/Code to Reproduce ``` from scipy.sparse import csr_matrix from sklearn.linear_model import ElasticNet import numpy as ...
26,114
https://github.com/scikit-learn/scikit-learn/issues/26109
[ "New Feature", "module:model_selection", "Needs Decision - Include Feature" ]
HalvingRandomSearchCV and HalvingGridSearchCV do not support multimetric scoring. According to https://scikit-learn.org/stable/modules/grid_search.html, _HalvingRandomSearchCV and HalvingGridSearchCV do not support multimetric scoring._ When will this be implemented? When trying to use multimeric scoring tod...
26,109
https://github.com/scikit-learn/scikit-learn/issues/26109
[ "New Feature", "module:model_selection", "Needs Decision - Include Feature" ]
HalvingRandomSearchCV and HalvingGridSearchCV do not support multimetric scoring. According to https://scikit-learn.org/stable/modules/grid_search.html, _HalvingRandomSearchCV and HalvingGridSearchCV do not support multimetric scoring._ When will this be implemented? When trying to use multimeric scoring tod...
26,109
https://github.com/scikit-learn/scikit-learn/issues/26100
[ "Performance", "Regression" ]
Performance regression in KMeans.transform https://scikit-learn.org/scikit-learn-benchmarks/#cluster.KMeansBenchmark.time_transform?p-representation='dense'&p-algorithm='elkan'&p-init='k-means%2B%2B'&commits=ab7e3d19-b397b8f2 The increment is quite small in absolute value but quite consistent so it could be worth i...
26,100
https://github.com/scikit-learn/scikit-learn/issues/26100
[ "Performance", "Regression" ]
Performance regression in KMeans.transform https://scikit-learn.org/scikit-learn-benchmarks/#cluster.KMeansBenchmark.time_transform?p-representation='dense'&p-algorithm='elkan'&p-init='k-means%2B%2B'&commits=ab7e3d19-b397b8f2 The increment is quite small in absolute value but quite consistent so it could be worth i...
26,100
https://github.com/scikit-learn/scikit-learn/issues/26099
[ "Performance", "Regression" ]
Memory usage regression in RandomForestClassifier.fit on sparse data There was an old (around the time of the 1.1 release) memory usage regression in `RandomForestClassifier.fit`: - https://scikit-learn.org/scikit-learn-benchmarks/#ensemble.RandomForestClassifierBenchmark.peakmem_fit?p-representation='sparse'&p-n_j...
26,099
https://github.com/scikit-learn/scikit-learn/issues/26099
[ "Performance", "Regression" ]
Memory usage regression in RandomForestClassifier.fit on sparse data There was an old (around the time of the 1.1 release) memory usage regression in `RandomForestClassifier.fit`: - https://scikit-learn.org/scikit-learn-benchmarks/#ensemble.RandomForestClassifierBenchmark.peakmem_fit?p-representation='sparse'&p-n_j...
26,099
https://github.com/scikit-learn/scikit-learn/issues/26099
[ "Performance", "Regression" ]
Memory usage regression in RandomForestClassifier.fit on sparse data There was an old (around the time of the 1.1 release) memory usage regression in `RandomForestClassifier.fit`: - https://scikit-learn.org/scikit-learn-benchmarks/#ensemble.RandomForestClassifierBenchmark.peakmem_fit?p-representation='sparse'&p-n_j...
26,099
https://github.com/scikit-learn/scikit-learn/issues/26099
[ "Performance", "Regression" ]
Memory usage regression in RandomForestClassifier.fit on sparse data There was an old (around the time of the 1.1 release) memory usage regression in `RandomForestClassifier.fit`: - https://scikit-learn.org/scikit-learn-benchmarks/#ensemble.RandomForestClassifierBenchmark.peakmem_fit?p-representation='sparse'&p-n_j...
26,099
https://github.com/scikit-learn/scikit-learn/issues/26098
[ "Performance", "Regression" ]
Memory usage performance regression in several scikit-learn estimators There is a weird yet significant memory usage increase in many seemingly unrelated scikit-learn estimators that happened on 2023-03-22, e.g.: - https://scikit-learn.org/scikit-learn-benchmarks/#neighbors.KNeighborsClassifierBenchmark.peakmem_fit...
26,098
https://github.com/scikit-learn/scikit-learn/issues/26097
[ "Performance", "Regression" ]
Performance regression in pairwise_distances with the Euclidean metric on sparse data As spotted by our continuous benchmark suite, there is a more than 2x slowdown in `pairwise_distances` on sparse input data (for the Euclidean metric). - https://scikit-learn.org/scikit-learn-benchmarks/#metrics.PairwiseDistancesB...
26,097
https://github.com/scikit-learn/scikit-learn/issues/26097
[ "Performance", "Regression" ]
Performance regression in pairwise_distances with the Euclidean metric on sparse data As spotted by our continuous benchmark suite, there is a more than 2x slowdown in `pairwise_distances` on sparse input data (for the Euclidean metric). - https://scikit-learn.org/scikit-learn-benchmarks/#metrics.PairwiseDistancesB...
26,097
https://github.com/scikit-learn/scikit-learn/issues/26097
[ "Performance", "Regression" ]
Performance regression in pairwise_distances with the Euclidean metric on sparse data As spotted by our continuous benchmark suite, there is a more than 2x slowdown in `pairwise_distances` on sparse input data (for the Euclidean metric). - https://scikit-learn.org/scikit-learn-benchmarks/#metrics.PairwiseDistancesB...
26,097
https://github.com/scikit-learn/scikit-learn/issues/26097
[ "Performance", "Regression" ]
Performance regression in pairwise_distances with the Euclidean metric on sparse data As spotted by our continuous benchmark suite, there is a more than 2x slowdown in `pairwise_distances` on sparse input data (for the Euclidean metric). - https://scikit-learn.org/scikit-learn-benchmarks/#metrics.PairwiseDistancesB...
26,097
https://github.com/scikit-learn/scikit-learn/issues/26097
[ "Performance", "Regression" ]
Performance regression in pairwise_distances with the Euclidean metric on sparse data As spotted by our continuous benchmark suite, there is a more than 2x slowdown in `pairwise_distances` on sparse input data (for the Euclidean metric). - https://scikit-learn.org/scikit-learn-benchmarks/#metrics.PairwiseDistancesB...
26,097
https://github.com/scikit-learn/scikit-learn/issues/26097
[ "Performance", "Regression" ]
Performance regression in pairwise_distances with the Euclidean metric on sparse data As spotted by our continuous benchmark suite, there is a more than 2x slowdown in `pairwise_distances` on sparse input data (for the Euclidean metric). - https://scikit-learn.org/scikit-learn-benchmarks/#metrics.PairwiseDistancesB...
26,097
https://github.com/scikit-learn/scikit-learn/issues/26097
[ "Performance", "Regression" ]
Performance regression in pairwise_distances with the Euclidean metric on sparse data As spotted by our continuous benchmark suite, there is a more than 2x slowdown in `pairwise_distances` on sparse input data (for the Euclidean metric). - https://scikit-learn.org/scikit-learn-benchmarks/#metrics.PairwiseDistancesB...
26,097
https://github.com/scikit-learn/scikit-learn/issues/26090
[ "API", "Needs Decision", "module:ensemble", "module:linear_model" ]
Rename quantile parameter in QuantileRegressor and HistGradientBoostingRegressor [`QuantileRegressor`](https://scikit-learn.org/dev/modules/generated/sklearn.linear_model.QuantileRegressor.html#sklearn.linear_model.QuantileRegressor) and [`HistGradientBoostingRegressor`](https://scikit-learn.org/dev/modules/generated/...
26,090
https://github.com/scikit-learn/scikit-learn/issues/26090
[ "API", "Needs Decision", "module:ensemble", "module:linear_model" ]
Rename quantile parameter in QuantileRegressor and HistGradientBoostingRegressor [`QuantileRegressor`](https://scikit-learn.org/dev/modules/generated/sklearn.linear_model.QuantileRegressor.html#sklearn.linear_model.QuantileRegressor) and [`HistGradientBoostingRegressor`](https://scikit-learn.org/dev/modules/generated/...
26,090
https://github.com/scikit-learn/scikit-learn/issues/26090
[ "API", "Needs Decision", "module:ensemble", "module:linear_model" ]
Rename quantile parameter in QuantileRegressor and HistGradientBoostingRegressor [`QuantileRegressor`](https://scikit-learn.org/dev/modules/generated/sklearn.linear_model.QuantileRegressor.html#sklearn.linear_model.QuantileRegressor) and [`HistGradientBoostingRegressor`](https://scikit-learn.org/dev/modules/generated/...
26,090
https://github.com/scikit-learn/scikit-learn/issues/26089
[ "Bug", "Needs Triage" ]
1.2.2: documentation build fails ### Describe the bug I'm executing below command after `/usr/bin/python3 -sBm build -w --no-isolation`. Looks like documentation buiuld fails because wrong import in sklearn/__check_build/__init__.py ### Steps/Code to Reproduce ``` /usr/bin/python3 -sBm build -w --no-isolation...
26,089
https://github.com/scikit-learn/scikit-learn/issues/26084
[ "Documentation", "module:ensemble" ]
Integers vs floats in categorical features in HistGradientBoostingRegressor ### Describe the bug Hi there, I'm having an issue with the HistGradientBoostingRegressor model and its native usage of categorical features. The documentation suggests that categorical features should be encoded as integers. However, once...
26,084
https://github.com/scikit-learn/scikit-learn/issues/26084
[ "Documentation", "module:ensemble" ]
Integers vs floats in categorical features in HistGradientBoostingRegressor ### Describe the bug Hi there, I'm having an issue with the HistGradientBoostingRegressor model and its native usage of categorical features. The documentation suggests that categorical features should be encoded as integers. However, once...
26,084
https://github.com/scikit-learn/scikit-learn/issues/26084
[ "Documentation", "module:ensemble" ]
Integers vs floats in categorical features in HistGradientBoostingRegressor ### Describe the bug Hi there, I'm having an issue with the HistGradientBoostingRegressor model and its native usage of categorical features. The documentation suggests that categorical features should be encoded as integers. However, once...
26,084
https://github.com/scikit-learn/scikit-learn/issues/26084
[ "Documentation", "module:ensemble" ]
Integers vs floats in categorical features in HistGradientBoostingRegressor ### Describe the bug Hi there, I'm having an issue with the HistGradientBoostingRegressor model and its native usage of categorical features. The documentation suggests that categorical features should be encoded as integers. However, once...
26,084
https://github.com/scikit-learn/scikit-learn/issues/26084
[ "Documentation", "module:ensemble" ]
Integers vs floats in categorical features in HistGradientBoostingRegressor ### Describe the bug Hi there, I'm having an issue with the HistGradientBoostingRegressor model and its native usage of categorical features. The documentation suggests that categorical features should be encoded as integers. However, once...
26,084
https://github.com/scikit-learn/scikit-learn/issues/26084
[ "Documentation", "module:ensemble" ]
Integers vs floats in categorical features in HistGradientBoostingRegressor ### Describe the bug Hi there, I'm having an issue with the HistGradientBoostingRegressor model and its native usage of categorical features. The documentation suggests that categorical features should be encoded as integers. However, once...
26,084
https://github.com/scikit-learn/scikit-learn/issues/26084
[ "Documentation", "module:ensemble" ]
Integers vs floats in categorical features in HistGradientBoostingRegressor ### Describe the bug Hi there, I'm having an issue with the HistGradientBoostingRegressor model and its native usage of categorical features. The documentation suggests that categorical features should be encoded as integers. However, once...
26,084
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26083
[ "API", "RFC", "Array API" ]
RFC/API (Array API) mixing devices and data types with estimators Right now, if the user fits an estimator using a `pandas.DataFrame`, but passes a `numpy.ndarray` during `predict`, they get a warning due to missing feature names. The situation is only to get more complicated as we're adding support for more types ...
26,083
https://github.com/scikit-learn/scikit-learn/issues/26063
[ "New Feature", "module:preprocessing" ]
Use `np.uint8` as default dtype for `OneHotEncoder` instead of `np.float64` ### Describe the workflow you want to enable `sklearn.preprocessing.OneHotEncoder` should use as `dtype` the `np.uint8` by default instead of `np.float64` as it is currently. I don't see the reasoning behind using `np.float64`, this if anythi...
26,063
https://github.com/scikit-learn/scikit-learn/issues/26063
[ "New Feature", "module:preprocessing" ]
Use `np.uint8` as default dtype for `OneHotEncoder` instead of `np.float64` ### Describe the workflow you want to enable `sklearn.preprocessing.OneHotEncoder` should use as `dtype` the `np.uint8` by default instead of `np.float64` as it is currently. I don't see the reasoning behind using `np.float64`, this if anythi...
26,063
https://github.com/scikit-learn/scikit-learn/issues/26063
[ "New Feature", "module:preprocessing" ]
Use `np.uint8` as default dtype for `OneHotEncoder` instead of `np.float64` ### Describe the workflow you want to enable `sklearn.preprocessing.OneHotEncoder` should use as `dtype` the `np.uint8` by default instead of `np.float64` as it is currently. I don't see the reasoning behind using `np.float64`, this if anythi...
26,063
https://github.com/scikit-learn/scikit-learn/issues/26063
[ "New Feature", "module:preprocessing" ]
Use `np.uint8` as default dtype for `OneHotEncoder` instead of `np.float64` ### Describe the workflow you want to enable `sklearn.preprocessing.OneHotEncoder` should use as `dtype` the `np.uint8` by default instead of `np.float64` as it is currently. I don't see the reasoning behind using `np.float64`, this if anythi...
26,063
https://github.com/scikit-learn/scikit-learn/issues/26063
[ "New Feature", "module:preprocessing" ]
Use `np.uint8` as default dtype for `OneHotEncoder` instead of `np.float64` ### Describe the workflow you want to enable `sklearn.preprocessing.OneHotEncoder` should use as `dtype` the `np.uint8` by default instead of `np.float64` as it is currently. I don't see the reasoning behind using `np.float64`, this if anythi...
26,063
https://github.com/scikit-learn/scikit-learn/issues/26063
[ "New Feature", "module:preprocessing" ]
Use `np.uint8` as default dtype for `OneHotEncoder` instead of `np.float64` ### Describe the workflow you want to enable `sklearn.preprocessing.OneHotEncoder` should use as `dtype` the `np.uint8` by default instead of `np.float64` as it is currently. I don't see the reasoning behind using `np.float64`, this if anythi...
26,063
https://github.com/scikit-learn/scikit-learn/issues/26063
[ "New Feature", "module:preprocessing" ]
Use `np.uint8` as default dtype for `OneHotEncoder` instead of `np.float64` ### Describe the workflow you want to enable `sklearn.preprocessing.OneHotEncoder` should use as `dtype` the `np.uint8` by default instead of `np.float64` as it is currently. I don't see the reasoning behind using `np.float64`, this if anythi...
26,063
https://github.com/scikit-learn/scikit-learn/issues/26063
[ "New Feature", "module:preprocessing" ]
Use `np.uint8` as default dtype for `OneHotEncoder` instead of `np.float64` ### Describe the workflow you want to enable `sklearn.preprocessing.OneHotEncoder` should use as `dtype` the `np.uint8` by default instead of `np.float64` as it is currently. I don't see the reasoning behind using `np.float64`, this if anythi...
26,063
https://github.com/scikit-learn/scikit-learn/issues/26062
[ "New Feature", "module:ensemble" ]
Add `class_weight` feature to KNeighbors, GradientBoosting and AdaBoost classifiers ### Describe the workflow you want to enable I propose adding a `class_weight` parameter to the [KNeighborsClassifier](https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.KNeighborsClassifier.html), [GradientBoosting...
26,062
https://github.com/scikit-learn/scikit-learn/issues/26062
[ "New Feature", "module:ensemble" ]
Add `class_weight` feature to KNeighbors, GradientBoosting and AdaBoost classifiers ### Describe the workflow you want to enable I propose adding a `class_weight` parameter to the [KNeighborsClassifier](https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.KNeighborsClassifier.html), [GradientBoosting...
26,062
https://github.com/scikit-learn/scikit-learn/issues/26061
[ "New Feature", "Needs Info" ]
Store spectral embeddings in SpectralClustering ### Describe the workflow you want to enable Save the spectral embeddings used for clustering in the [SpectralClustering](https://github.com/scikit-learn/scikit-learn/blob/9aaed4987/sklearn/cluster/_spectral.py#L394) class and make them accessible through an attribute, ...
26,061
https://github.com/scikit-learn/scikit-learn/issues/26061
[ "New Feature", "Needs Info" ]
Store spectral embeddings in SpectralClustering ### Describe the workflow you want to enable Save the spectral embeddings used for clustering in the [SpectralClustering](https://github.com/scikit-learn/scikit-learn/blob/9aaed4987/sklearn/cluster/_spectral.py#L394) class and make them accessible through an attribute, ...
26,061
https://github.com/scikit-learn/scikit-learn/issues/26061
[ "New Feature", "Needs Info" ]
Store spectral embeddings in SpectralClustering ### Describe the workflow you want to enable Save the spectral embeddings used for clustering in the [SpectralClustering](https://github.com/scikit-learn/scikit-learn/blob/9aaed4987/sklearn/cluster/_spectral.py#L394) class and make them accessible through an attribute, ...
26,061
https://github.com/scikit-learn/scikit-learn/issues/26061
[ "New Feature", "Needs Info" ]
Store spectral embeddings in SpectralClustering ### Describe the workflow you want to enable Save the spectral embeddings used for clustering in the [SpectralClustering](https://github.com/scikit-learn/scikit-learn/blob/9aaed4987/sklearn/cluster/_spectral.py#L394) class and make them accessible through an attribute, ...
26,061
https://github.com/scikit-learn/scikit-learn/issues/26056
[ "Documentation", "Needs Triage" ]
Typo in HistGradientBoosting documentation | no_interaction should be no_interactions ### Describe the issue linked to the documentation In documentation, the `interaction_cst` field of [HistGradientBoostingRegressor](https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.HistGradientBoostingRegressor.htm...
26,056
https://github.com/scikit-learn/scikit-learn/issues/26056
[ "Documentation", "Needs Triage" ]
Typo in HistGradientBoosting documentation | no_interaction should be no_interactions ### Describe the issue linked to the documentation In documentation, the `interaction_cst` field of [HistGradientBoostingRegressor](https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.HistGradientBoostingRegressor.htm...
26,056
https://github.com/scikit-learn/scikit-learn/issues/26056
[ "Documentation", "Needs Triage" ]
Typo in HistGradientBoosting documentation | no_interaction should be no_interactions ### Describe the issue linked to the documentation In documentation, the `interaction_cst` field of [HistGradientBoostingRegressor](https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.HistGradientBoostingRegressor.htm...
26,056
https://github.com/scikit-learn/scikit-learn/issues/26050
[ "API" ]
SLEP006: globally setting request values One of the issues raised in https://github.com/scikit-learn/scikit-learn/issues/25776 and https://github.com/scikit-learn/scikit-learn/issues/23928 is about a code such as following to work under SLEP6: ```py est = AdaBoostClassifier(LogisticRegression()) est.fit(X, y, sam...
26,050
https://github.com/scikit-learn/scikit-learn/issues/26050
[ "API" ]
SLEP006: globally setting request values One of the issues raised in https://github.com/scikit-learn/scikit-learn/issues/25776 and https://github.com/scikit-learn/scikit-learn/issues/23928 is about a code such as following to work under SLEP6: ```py est = AdaBoostClassifier(LogisticRegression()) est.fit(X, y, sam...
26,050
https://github.com/scikit-learn/scikit-learn/issues/26050
[ "API" ]
SLEP006: globally setting request values One of the issues raised in https://github.com/scikit-learn/scikit-learn/issues/25776 and https://github.com/scikit-learn/scikit-learn/issues/23928 is about a code such as following to work under SLEP6: ```py est = AdaBoostClassifier(LogisticRegression()) est.fit(X, y, sam...
26,050
https://github.com/scikit-learn/scikit-learn/issues/26050
[ "API" ]
SLEP006: globally setting request values One of the issues raised in https://github.com/scikit-learn/scikit-learn/issues/25776 and https://github.com/scikit-learn/scikit-learn/issues/23928 is about a code such as following to work under SLEP6: ```py est = AdaBoostClassifier(LogisticRegression()) est.fit(X, y, sam...
26,050
https://github.com/scikit-learn/scikit-learn/issues/26050
[ "API" ]
SLEP006: globally setting request values One of the issues raised in https://github.com/scikit-learn/scikit-learn/issues/25776 and https://github.com/scikit-learn/scikit-learn/issues/23928 is about a code such as following to work under SLEP6: ```py est = AdaBoostClassifier(LogisticRegression()) est.fit(X, y, sam...
26,050
https://github.com/scikit-learn/scikit-learn/issues/26045
[ "API" ]
SLEP006: introduction of metadata routing through a feature flag In https://github.com/scikit-learn/scikit-learn/issues/25776 we started talking about introducing SLEP6 through a feature flag. This would mean, the user can control whether SLEP6 is enabled or not. This will be done via our global configs: ```py imp...
26,045
https://github.com/scikit-learn/scikit-learn/issues/26045
[ "API" ]
SLEP006: introduction of metadata routing through a feature flag In https://github.com/scikit-learn/scikit-learn/issues/25776 we started talking about introducing SLEP6 through a feature flag. This would mean, the user can control whether SLEP6 is enabled or not. This will be done via our global configs: ```py imp...
26,045
https://github.com/scikit-learn/scikit-learn/issues/26040
[ "New Feature", "module:feature_extraction", "Needs Decision - Include Feature" ]
Implementation of an additional patch extraction strategy. ### Describe the workflow you want to enable I think it would be valuable to add a function that extracts non-overlapping patches from an image. This alternative patch extraction strategy might be more suitable for certain use cases where overlapping patches ...
26,040
https://github.com/scikit-learn/scikit-learn/issues/26040
[ "New Feature", "module:feature_extraction", "Needs Decision - Include Feature" ]
Implementation of an additional patch extraction strategy. ### Describe the workflow you want to enable I think it would be valuable to add a function that extracts non-overlapping patches from an image. This alternative patch extraction strategy might be more suitable for certain use cases where overlapping patches ...
26,040
https://github.com/scikit-learn/scikit-learn/issues/26035
[ "Documentation" ]
Request for project inclusion in scikit-learn related projects: skforecast ### Describe the issue linked to the documentation Hi! We have seen on the [Related Projects](https://scikit-learn.org/stable/related_projects.html) page that projects closely related to **scikit-learn** are mentioned. We would like to propose...
26,035
https://github.com/scikit-learn/scikit-learn/issues/26035
[ "Documentation" ]
Request for project inclusion in scikit-learn related projects: skforecast ### Describe the issue linked to the documentation Hi! We have seen on the [Related Projects](https://scikit-learn.org/stable/related_projects.html) page that projects closely related to **scikit-learn** are mentioned. We would like to propose...
26,035
https://github.com/scikit-learn/scikit-learn/issues/26035
[ "Documentation" ]
Request for project inclusion in scikit-learn related projects: skforecast ### Describe the issue linked to the documentation Hi! We have seen on the [Related Projects](https://scikit-learn.org/stable/related_projects.html) page that projects closely related to **scikit-learn** are mentioned. We would like to propose...
26,035
https://github.com/scikit-learn/scikit-learn/issues/26035
[ "Documentation" ]
Request for project inclusion in scikit-learn related projects: skforecast ### Describe the issue linked to the documentation Hi! We have seen on the [Related Projects](https://scikit-learn.org/stable/related_projects.html) page that projects closely related to **scikit-learn** are mentioned. We would like to propose...
26,035
https://github.com/scikit-learn/scikit-learn/issues/26035
[ "Documentation" ]
Request for project inclusion in scikit-learn related projects: skforecast ### Describe the issue linked to the documentation Hi! We have seen on the [Related Projects](https://scikit-learn.org/stable/related_projects.html) page that projects closely related to **scikit-learn** are mentioned. We would like to propose...
26,035
https://github.com/scikit-learn/scikit-learn/issues/26035
[ "Documentation" ]
Request for project inclusion in scikit-learn related projects: skforecast ### Describe the issue linked to the documentation Hi! We have seen on the [Related Projects](https://scikit-learn.org/stable/related_projects.html) page that projects closely related to **scikit-learn** are mentioned. We would like to propose...
26,035
https://github.com/scikit-learn/scikit-learn/issues/26035
[ "Documentation" ]
Request for project inclusion in scikit-learn related projects: skforecast ### Describe the issue linked to the documentation Hi! We have seen on the [Related Projects](https://scikit-learn.org/stable/related_projects.html) page that projects closely related to **scikit-learn** are mentioned. We would like to propose...
26,035
https://github.com/scikit-learn/scikit-learn/issues/26035
[ "Documentation" ]
Request for project inclusion in scikit-learn related projects: skforecast ### Describe the issue linked to the documentation Hi! We have seen on the [Related Projects](https://scikit-learn.org/stable/related_projects.html) page that projects closely related to **scikit-learn** are mentioned. We would like to propose...
26,035
https://github.com/scikit-learn/scikit-learn/issues/26026
[ "New Feature", "Needs Info", "Needs Decision - Include Feature" ]
`Fmax` score (or maximum of F1/Fbeta) ### Describe the workflow you want to enable The maximum of F1 across thresholds is a well-studied metric and it is both robust and valid in binary and multilabel classification problems. Basically, it can be computed with `precision_recall_curve`, as shown below, for binary pro...
26,026
https://github.com/scikit-learn/scikit-learn/issues/26026
[ "New Feature", "Needs Info", "Needs Decision - Include Feature" ]
`Fmax` score (or maximum of F1/Fbeta) ### Describe the workflow you want to enable The maximum of F1 across thresholds is a well-studied metric and it is both robust and valid in binary and multilabel classification problems. Basically, it can be computed with `precision_recall_curve`, as shown below, for binary pro...
26,026
https://github.com/scikit-learn/scikit-learn/issues/26026
[ "New Feature", "Needs Info", "Needs Decision - Include Feature" ]
`Fmax` score (or maximum of F1/Fbeta) ### Describe the workflow you want to enable The maximum of F1 across thresholds is a well-studied metric and it is both robust and valid in binary and multilabel classification problems. Basically, it can be computed with `precision_recall_curve`, as shown below, for binary pro...
26,026
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024
https://github.com/scikit-learn/scikit-learn/issues/26024
[ "API", "Meta-issue", "Array API" ]
Make more of the "tools" of scikit-learn Array API compatible 🚨 🚧 This issue requires a bit of patience and experience to contribute to 🚧 🚨 - Original issue introducing array API in scikit-learn: #22352 - array API official doc/spec: https://data-apis.org/array-api/ - scikit-learn doc: https://scikit-learn.o...
26,024