repo
stringlengths
7
90
file_url
stringlengths
81
315
file_path
stringlengths
4
228
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:38:15
2026-01-05 02:33:18
truncated
bool
2 classes
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_extraction/tests/__init__.py
sklearn/feature_extraction/tests/__init__.py
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_extraction/tests/test_dict_vectorizer.py
sklearn/feature_extraction/tests/test_dict_vectorizer.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from random import Random import numpy as np import pytest import scipy.sparse as sp from numpy.testing import assert_allclose, assert_array_equal from sklearn.exceptions import NotFittedError from sklearn.feature_extraction import DictVe...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/_variance_threshold.py
sklearn/feature_selection/_variance_threshold.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from numbers import Real import numpy as np from sklearn.base import BaseEstimator, _fit_context from sklearn.feature_selection._base import SelectorMixin from sklearn.utils._param_validation import Interval from sklearn.utils.sparsefuncs...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/_from_model.py
sklearn/feature_selection/_from_model.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from copy import deepcopy from numbers import Integral, Real import numpy as np from sklearn.base import BaseEstimator, MetaEstimatorMixin, _fit_context, clone from sklearn.exceptions import NotFittedError from sklearn.feature_selection._...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/_base.py
sklearn/feature_selection/_base.py
"""Generic feature selection mixin""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import warnings from abc import ABCMeta, abstractmethod from operator import attrgetter import numpy as np from scipy.sparse import csc_matrix, issparse from sklearn.base import TransformerMixin from...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/_sequential.py
sklearn/feature_selection/_sequential.py
""" Sequential feature selection """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from numbers import Integral, Real import numpy as np from sklearn.base import ( BaseEstimator, MetaEstimatorMixin, _fit_context, clone, is_classifier, ) from sklearn.feature_selec...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/_mutual_info.py
sklearn/feature_selection/_mutual_info.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from numbers import Integral import numpy as np from scipy.sparse import issparse from scipy.special import digamma from sklearn.metrics.cluster import mutual_info_score from sklearn.neighbors import KDTree, NearestNeighbors from sklearn....
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/_rfe.py
sklearn/feature_selection/_rfe.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause """Recursive feature elimination for feature ranking""" import warnings from copy import deepcopy from numbers import Integral import numpy as np from joblib import effective_n_jobs from sklearn.base import ( BaseEstimator, MetaE...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/__init__.py
sklearn/feature_selection/__init__.py
"""Feature selection algorithms. These include univariate filter selection methods and the recursive feature elimination algorithm. """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from sklearn.feature_selection._base import SelectorMixin from sklearn.feature_selection._from_model i...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/_univariate_selection.py
sklearn/feature_selection/_univariate_selection.py
"""Univariate features selection.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import warnings from numbers import Integral, Real import numpy as np from scipy import special, stats from scipy.sparse import issparse from sklearn.base import BaseEstimator, _fit_context from sklea...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/tests/test_mutual_info.py
sklearn/feature_selection/tests/test_mutual_info.py
import numpy as np import pytest from sklearn.datasets import make_classification, make_regression from sklearn.feature_selection import mutual_info_classif, mutual_info_regression from sklearn.feature_selection._mutual_info import _compute_mi from sklearn.utils import check_random_state from sklearn.utils._testing im...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/tests/test_rfe.py
sklearn/feature_selection/tests/test_rfe.py
""" Testing Recursive feature elimination """ import re from operator import attrgetter import numpy as np import pytest from joblib import parallel_backend from numpy.testing import assert_allclose, assert_array_almost_equal, assert_array_equal from sklearn.base import BaseEstimator, ClassifierMixin, is_classifier ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/tests/test_feature_select.py
sklearn/feature_selection/tests/test_feature_select.py
""" Todo: cross-check the F-value with stats model """ import itertools import warnings import numpy as np import pytest from numpy.testing import assert_allclose from scipy import sparse, stats from sklearn.datasets import load_iris, make_classification, make_regression from sklearn.feature_selection import ( G...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/tests/test_from_model.py
sklearn/feature_selection/tests/test_from_model.py
import re import warnings from unittest.mock import Mock import numpy as np import pytest from sklearn import datasets from sklearn.base import BaseEstimator from sklearn.cross_decomposition import CCA, PLSCanonical, PLSRegression from sklearn.datasets import make_friedman1, make_regression from sklearn.decomposition...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/tests/test_base.py
sklearn/feature_selection/tests/test_base.py
import numpy as np import pytest from numpy.testing import assert_array_equal from sklearn.base import BaseEstimator from sklearn.feature_selection._base import SelectorMixin from sklearn.utils.fixes import CSC_CONTAINERS from sklearn.utils.validation import validate_data class StepSelector(SelectorMixin, BaseEstima...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/tests/test_sequential.py
sklearn/feature_selection/tests/test_sequential.py
import numpy as np import pytest from numpy.testing import assert_array_equal from sklearn.cluster import KMeans from sklearn.datasets import make_blobs, make_classification, make_regression from sklearn.ensemble import HistGradientBoostingRegressor from sklearn.feature_selection import SequentialFeatureSelector from ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/tests/test_variance_threshold.py
sklearn/feature_selection/tests/test_variance_threshold.py
import numpy as np import pytest from sklearn.feature_selection import VarianceThreshold from sklearn.utils._testing import assert_array_equal from sklearn.utils.fixes import BSR_CONTAINERS, CSC_CONTAINERS, CSR_CONTAINERS data = [[0, 1, 2, 3, 4], [0, 2, 2, 3, 5], [1, 1, 2, 4, 0]] data2 = [[-0.13725701]] * 10 @pyte...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/tests/__init__.py
sklearn/feature_selection/tests/__init__.py
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/feature_selection/tests/test_chi2.py
sklearn/feature_selection/tests/test_chi2.py
""" Tests for chi2, currently the only feature selection function designed specifically to work with sparse matrices. """ import warnings import numpy as np import pytest import scipy.stats from sklearn.feature_selection import SelectKBest, chi2 from sklearn.feature_selection._univariate_selection import _chisquare ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/impute/_base.py
sklearn/impute/_base.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import numbers import warnings from collections import Counter from functools import partial from typing import Callable import numpy as np import numpy.ma as ma from scipy import sparse as sp from sklearn.base import BaseEstimator, Trans...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/impute/_iterative.py
sklearn/impute/_iterative.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import warnings from collections import namedtuple from numbers import Integral, Real from time import time import numpy as np from scipy import stats from sklearn.base import _fit_context, clone from sklearn.exceptions import Convergence...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/impute/_knn.py
sklearn/impute/_knn.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from numbers import Integral import numpy as np from sklearn.base import _fit_context from sklearn.impute._base import _BaseImputer from sklearn.metrics import pairwise_distances_chunked from sklearn.metrics.pairwise import _NAN_METRICS f...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/impute/__init__.py
sklearn/impute/__init__.py
"""Transformers for missing value imputation.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import typing from sklearn.impute._base import MissingIndicator, SimpleImputer from sklearn.impute._knn import KNNImputer if typing.TYPE_CHECKING: # Avoid errors in type checkers (e.g....
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/impute/tests/test_common.py
sklearn/impute/tests/test_common.py
import numpy as np import pytest from sklearn.base import clone from sklearn.experimental import enable_iterative_imputer # noqa: F401 from sklearn.impute import IterativeImputer, KNNImputer, SimpleImputer from sklearn.utils._testing import ( assert_allclose, assert_allclose_dense_sparse, assert_array_equ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/impute/tests/test_base.py
sklearn/impute/tests/test_base.py
import numpy as np import pytest from sklearn.impute._base import _BaseImputer from sklearn.impute._iterative import _assign_where from sklearn.utils._mask import _get_mask from sklearn.utils._testing import _convert_container, assert_allclose @pytest.fixture def data(): X = np.random.randn(10, 2) X[::2] = n...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/impute/tests/test_impute.py
sklearn/impute/tests/test_impute.py
import io import re import warnings from itertools import product import numpy as np import pytest from scipy import sparse from scipy.stats import kstest from sklearn import tree from sklearn.datasets import load_diabetes from sklearn.dummy import DummyRegressor from sklearn.exceptions import ConvergenceWarning # m...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/impute/tests/__init__.py
sklearn/impute/tests/__init__.py
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/impute/tests/test_knn.py
sklearn/impute/tests/test_knn.py
import numpy as np import pytest from sklearn import config_context from sklearn.impute import KNNImputer from sklearn.metrics.pairwise import nan_euclidean_distances, pairwise_distances from sklearn.neighbors import KNeighborsRegressor from sklearn.utils._testing import assert_allclose @pytest.mark.parametrize("wei...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/mixture/_gaussian_mixture.py
sklearn/mixture/_gaussian_mixture.py
"""Gaussian Mixture Model.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import math import numpy as np from sklearn._config import get_config from sklearn.externals import array_api_extra as xpx from sklearn.mixture._base import BaseMixture, _check_shape from sklearn.utils import...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/mixture/_base.py
sklearn/mixture/_base.py
"""Base class for mixture models.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import warnings from abc import ABCMeta, abstractmethod from contextlib import nullcontext from numbers import Integral, Real from time import time import numpy as np from sklearn import cluster from ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/mixture/_bayesian_mixture.py
sklearn/mixture/_bayesian_mixture.py
"""Bayesian Gaussian Mixture Model.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import math from numbers import Real import numpy as np from scipy.special import betaln, digamma, gammaln from sklearn.mixture._base import BaseMixture, _check_shape from sklearn.mixture._gaussian_...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/mixture/__init__.py
sklearn/mixture/__init__.py
"""Mixture modeling algorithms.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from sklearn.mixture._bayesian_mixture import BayesianGaussianMixture from sklearn.mixture._gaussian_mixture import GaussianMixture __all__ = ["BayesianGaussianMixture", "GaussianMixture"]
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/mixture/tests/test_bayesian_mixture.py
sklearn/mixture/tests/test_bayesian_mixture.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import copy import numpy as np import pytest from scipy.special import gammaln from sklearn.exceptions import NotFittedError from sklearn.metrics.cluster import adjusted_rand_score from sklearn.mixture import BayesianGaussianMixture from ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/mixture/tests/test_mixture.py
sklearn/mixture/tests/test_mixture.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import numpy as np import pytest from sklearn.base import clone from sklearn.mixture import BayesianGaussianMixture, GaussianMixture @pytest.mark.parametrize("estimator", [GaussianMixture(), BayesianGaussianMixture()]) def test_gaussian_...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/mixture/tests/test_gaussian_mixture.py
sklearn/mixture/tests/test_gaussian_mixture.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import copy import itertools import re import sys import warnings from io import StringIO from unittest.mock import Mock import numpy as np import pytest from scipy import linalg, stats import sklearn from sklearn.cluster import KMeans fr...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/mixture/tests/__init__.py
sklearn/mixture/tests/__init__.py
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/__check_build/__init__.py
sklearn/__check_build/__init__.py
"""Module to give helpful messages to the user that did not compile scikit-learn properly. """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import os INPLACE_MSG = """ It appears that you are importing a local scikit-learn source tree. For this, you need to have an inplace install. ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/_encoders.py
sklearn/preprocessing/_encoders.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import numbers import warnings from numbers import Integral import numpy as np from scipy import sparse from sklearn.base import ( BaseEstimator, OneToOneFeatureMixin, TransformerMixin, _fit_context, ) from sklearn.utils i...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/_target_encoder.py
sklearn/preprocessing/_target_encoder.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from numbers import Integral, Real import numpy as np from sklearn.base import OneToOneFeatureMixin, _fit_context from sklearn.preprocessing._encoders import _BaseEncoder from sklearn.preprocessing._target_encoder_fast import ( _fit_e...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/_polynomial.py
sklearn/preprocessing/_polynomial.py
""" This file contains preprocessing tools based on polynomials. """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import collections from itertools import chain, combinations from itertools import combinations_with_replacement as combinations_w_r from numbers import Integral import ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/_discretization.py
sklearn/preprocessing/_discretization.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import warnings from numbers import Integral import numpy as np from sklearn.base import BaseEstimator, TransformerMixin, _fit_context from sklearn.preprocessing._encoders import OneHotEncoder from sklearn.utils import resample from skle...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/_function_transformer.py
sklearn/preprocessing/_function_transformer.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import warnings from functools import partial import numpy as np from sklearn.base import BaseEstimator, TransformerMixin, _fit_context from sklearn.utils._dataframe import is_pandas_df, is_polars_df from sklearn.utils._param_validation i...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/_label.py
sklearn/preprocessing/_label.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import array import itertools import warnings from collections import defaultdict from numbers import Integral import numpy as np import scipy.sparse as sp from sklearn.base import BaseEstimator, TransformerMixin, _fit_context from sklear...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/__init__.py
sklearn/preprocessing/__init__.py
"""Methods for scaling, centering, normalization, binarization, and more.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from sklearn.preprocessing._data import ( Binarizer, KernelCenterer, MaxAbsScaler, MinMaxScaler, Normalizer, PowerTransformer, Quantil...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/_data.py
sklearn/preprocessing/_data.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import warnings from numbers import Integral, Real import numpy as np from scipy import sparse, stats from scipy.special import boxcox, inv_boxcox from sklearn.base import ( BaseEstimator, ClassNamePrefixFeaturesOutMixin, One...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/tests/test_discretization.py
sklearn/preprocessing/tests/test_discretization.py
import warnings import numpy as np import pytest import scipy.sparse as sp from sklearn import clone from sklearn.preprocessing import KBinsDiscretizer, OneHotEncoder from sklearn.utils._testing import ( assert_allclose, assert_allclose_dense_sparse, assert_array_almost_equal, assert_array_equal, ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/tests/test_data.py
sklearn/preprocessing/tests/test_data.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import re import warnings import numpy as np import numpy.linalg as la import pytest from scipy import sparse, stats from sklearn import config_context, datasets from sklearn.base import clone from sklearn.exceptions import NotFittedError...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/tests/test_polynomial.py
sklearn/preprocessing/tests/test_polynomial.py
import re import sys import numpy as np import pytest from numpy.testing import assert_allclose, assert_array_equal from scipy import sparse from scipy.interpolate import BSpline from scipy.sparse import random as sparse_random from sklearn._config import config_context from sklearn.linear_model import LinearRegressi...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/tests/test_encoders.py
sklearn/preprocessing/tests/test_encoders.py
import re import warnings import numpy as np import pytest from scipy import sparse from sklearn.exceptions import NotFittedError from sklearn.preprocessing import OneHotEncoder, OrdinalEncoder from sklearn.utils._missing import is_scalar_nan from sklearn.utils._testing import ( _convert_container, assert_all...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/tests/test_common.py
sklearn/preprocessing/tests/test_common.py
import warnings import numpy as np import pytest from sklearn.base import clone from sklearn.datasets import load_iris from sklearn.model_selection import train_test_split from sklearn.preprocessing import ( MaxAbsScaler, MinMaxScaler, PowerTransformer, QuantileTransformer, RobustScaler, Stand...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/tests/test_function_transformer.py
sklearn/preprocessing/tests/test_function_transformer.py
import warnings import numpy as np import pytest from sklearn.pipeline import make_pipeline from sklearn.preprocessing import FunctionTransformer, StandardScaler from sklearn.utils._testing import ( _convert_container, assert_allclose_dense_sparse, assert_array_equal, ) from sklearn.utils.fixes import CSC...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/tests/test_target_encoder.py
sklearn/preprocessing/tests/test_target_encoder.py
import re import warnings import numpy as np import pytest from numpy.testing import assert_allclose, assert_array_equal from sklearn.ensemble import RandomForestRegressor from sklearn.linear_model import Ridge from sklearn.model_selection import ( KFold, ShuffleSplit, StratifiedKFold, cross_val_score...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/tests/test_label.py
sklearn/preprocessing/tests/test_label.py
import numpy as np import pytest from scipy.sparse import issparse from sklearn import config_context, datasets from sklearn.preprocessing._label import ( LabelBinarizer, LabelEncoder, MultiLabelBinarizer, _inverse_binarize_multiclass, _inverse_binarize_thresholding, label_binarize, ) from skle...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/preprocessing/tests/__init__.py
sklearn/preprocessing/tests/__init__.py
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_public_functions.py
sklearn/tests/test_public_functions.py
from importlib import import_module from inspect import signature from numbers import Integral, Real import pytest from sklearn.utils._param_validation import ( Interval, InvalidParameterError, generate_invalid_param_val, generate_valid_param, make_constraint, ) def _get_func_info(func_module): ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_docstring_parameters_consistency.py
sklearn/tests/test_docstring_parameters_consistency.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import pytest from sklearn import metrics from sklearn.ensemble import ( BaggingClassifier, BaggingRegressor, IsolationForest, StackingClassifier, StackingRegressor, ) from sklearn.utils._testing import assert_docstring...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_metaestimators.py
sklearn/tests/test_metaestimators.py
"""Common tests for metaestimators""" import functools from contextlib import suppress from inspect import signature import numpy as np import pytest from sklearn.base import BaseEstimator, clone, is_regressor from sklearn.datasets import make_classification from sklearn.ensemble import BaggingClassifier from sklear...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_docstrings.py
sklearn/tests/test_docstrings.py
import re from inspect import signature from typing import Optional import pytest # make it possible to discover experimental estimators when calling `all_estimators` from sklearn.experimental import ( enable_halving_search_cv, # noqa: F401 enable_iterative_imputer, # noqa: F401 ) from sklearn.utils.discove...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/metadata_routing_common.py
sklearn/tests/metadata_routing_common.py
import inspect from collections import defaultdict from functools import partial import numpy as np from numpy.testing import assert_array_equal from sklearn.base import ( BaseEstimator, ClassifierMixin, MetaEstimatorMixin, RegressorMixin, TransformerMixin, clone, ) from sklearn.metrics._score...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_calibration.py
sklearn/tests/test_calibration.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import numpy as np import pytest from numpy.testing import assert_allclose from sklearn import config_context from sklearn.base import BaseEstimator, ClassifierMixin, clone from sklearn.calibration import ( CalibratedClassifierCV, ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_multiclass.py
sklearn/tests/test_multiclass.py
from re import escape import numpy as np import pytest import scipy.sparse as sp from numpy.testing import assert_allclose from sklearn import datasets, svm from sklearn.base import BaseEstimator, ClassifierMixin from sklearn.datasets import load_breast_cancer from sklearn.exceptions import NotFittedError from sklear...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_build.py
sklearn/tests/test_build.py
import os import textwrap import pytest from sklearn import __version__ from sklearn.utils._openmp_helpers import _openmp_parallelism_enabled def test_openmp_parallelism_enabled(): # Check that sklearn is built with OpenMP-based parallelism enabled. # This test can be skipped by setting the environment vari...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_config.py
sklearn/tests/test_config.py
import time from concurrent.futures import ThreadPoolExecutor import pytest import sklearn from sklearn import config_context, get_config, set_config from sklearn.utils.fixes import _IS_WASM from sklearn.utils.parallel import Parallel, delayed def test_config_context(): assert get_config() == { "assume_...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_pipeline.py
sklearn/tests/test_pipeline.py
""" Test the pipeline module. """ import itertools import re import shutil import time from tempfile import mkdtemp import joblib import numpy as np import pytest from sklearn import config_context from sklearn.base import ( BaseEstimator, ClassifierMixin, TransformerMixin, clone, is_classifier, ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_common.py
sklearn/tests/test_common.py
""" General tests for all estimators in sklearn. """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import os import pkgutil import re import warnings from functools import partial from itertools import chain import pytest from scipy.linalg import LinAlgWarning import sklearn from sk...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_kernel_approximation.py
sklearn/tests/test_kernel_approximation.py
import re import numpy as np import pytest from sklearn.datasets import make_classification from sklearn.kernel_approximation import ( AdditiveChi2Sampler, Nystroem, PolynomialCountSketch, RBFSampler, SkewedChi2Sampler, ) from sklearn.metrics.pairwise import ( chi2_kernel, kernel_metrics, ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_base.py
sklearn/tests/test_base.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import pickle import re import warnings import numpy as np import pytest import scipy.sparse as sp from numpy.testing import assert_allclose import sklearn from sklearn import config_context, datasets from sklearn.base import ( BaseEs...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_discriminant_analysis.py
sklearn/tests/test_discriminant_analysis.py
import warnings import numpy as np import pytest from scipy import linalg from sklearn.cluster import KMeans from sklearn.covariance import LedoitWolf, ShrunkCovariance, ledoit_wolf from sklearn.datasets import make_blobs from sklearn.discriminant_analysis import ( LinearDiscriminantAnalysis, QuadraticDiscrim...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_naive_bayes.py
sklearn/tests/test_naive_bayes.py
import re import warnings import numpy as np import pytest from scipy.special import logsumexp from sklearn._config import config_context from sklearn.datasets import load_digits, load_iris from sklearn.model_selection import cross_val_score, train_test_split from sklearn.naive_bayes import ( BernoulliNB, Cat...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_check_build.py
sklearn/tests/test_check_build.py
""" Smoke Test the check_build module """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import pytest from sklearn.__check_build import raise_build_error def test_raise_build_error(): with pytest.raises(ImportError): raise_build_error(ImportError())
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_metaestimators_metadata_routing.py
sklearn/tests/test_metaestimators_metadata_routing.py
import copy import re import numpy as np import pytest from sklearn import config_context from sklearn.base import BaseEstimator, is_classifier from sklearn.calibration import CalibratedClassifierCV from sklearn.compose import TransformedTargetRegressor from sklearn.covariance import GraphicalLassoCV from sklearn.ens...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_multioutput.py
sklearn/tests/test_multioutput.py
import re import numpy as np import pytest from joblib import cpu_count from sklearn import datasets from sklearn.base import ClassifierMixin, clone from sklearn.datasets import ( load_linnerud, make_classification, make_multilabel_classification, make_regression, ) from sklearn.dummy import DummyClas...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/__init__.py
sklearn/tests/__init__.py
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_isotonic.py
sklearn/tests/test_isotonic.py
import copy import pickle import warnings import numpy as np import pytest from scipy.special import expit import sklearn from sklearn.datasets import make_regression from sklearn.isotonic import ( IsotonicRegression, _make_unique, check_increasing, isotonic_regression, ) from sklearn.utils import shu...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_metadata_routing.py
sklearn/tests/test_metadata_routing.py
""" Metadata Routing Utility Tests """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import re import numpy as np import pytest from sklearn import config_context from sklearn.base import ( BaseEstimator, clone, ) from sklearn.exceptions import UnsetMetadataPassedError from ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_docstring_parameters.py
sklearn/tests/test_docstring_parameters.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import importlib import inspect import os import warnings from inspect import signature from pkgutil import walk_packages import numpy as np import pytest import sklearn from sklearn.datasets import make_classification # make it possible...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_random_projection.py
sklearn/tests/test_random_projection.py
import functools import warnings from typing import Any, List import numpy as np import pytest import scipy.sparse as sp from sklearn.exceptions import DataDimensionalityWarning, NotFittedError from sklearn.metrics import euclidean_distances from sklearn.random_projection import ( GaussianRandomProjection, Sp...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_min_dependencies_readme.py
sklearn/tests/test_min_dependencies_readme.py
"""Tests for the minimum dependencies in README.rst and pyproject.toml""" import os import re import tomllib from collections import defaultdict from pathlib import Path import pytest import sklearn from sklearn._min_dependencies import dependent_packages from sklearn.utils.fixes import parse_version # minimal depe...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_dummy.py
sklearn/tests/test_dummy.py
import warnings import numpy as np import pytest import scipy.sparse as sp from sklearn.base import clone from sklearn.dummy import DummyClassifier, DummyRegressor from sklearn.exceptions import NotFittedError from sklearn.utils._testing import ( assert_almost_equal, assert_array_almost_equal, assert_arra...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_init.py
sklearn/tests/test_init.py
# Basic unittests to test functioning of module's top-level __author__ = "Yaroslav Halchenko" __license__ = "BSD" try: from sklearn import * # noqa: F403 _top_import_error = None except Exception as e: _top_import_error = e def test_import_skl(): # Test either above import has failed for some re...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/tests/test_kernel_ridge.py
sklearn/tests/test_kernel_ridge.py
import numpy as np import pytest from sklearn.datasets import make_regression from sklearn.kernel_ridge import KernelRidge from sklearn.linear_model import Ridge from sklearn.metrics.pairwise import pairwise_kernels from sklearn.utils._testing import assert_array_almost_equal, ignore_warnings from sklearn.utils.fixes ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_base.py
sklearn/datasets/_base.py
""" Base IO code for all datasets """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import csv import gzip import hashlib import os import re import shutil import time import unicodedata import warnings from collections import namedtuple from importlib import resources from numbers im...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_kddcup99.py
sklearn/datasets/_kddcup99.py
"""KDDCUP 99 dataset. A classic dataset for anomaly detection. The dataset page is available from UCI Machine Learning Repository https://archive.ics.uci.edu/ml/machine-learning-databases/kddcup99-mld/kddcup.data.gz """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import errno im...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_rcv1.py
sklearn/datasets/_rcv1.py
"""RCV1 dataset. The dataset page is available at http://jmlr.csail.mit.edu/papers/volume5/lewis04a/ """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import logging from gzip import GzipFile from numbers import Integral, Real from os import PathLike, makedirs, remove from os.pa...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_covtype.py
sklearn/datasets/_covtype.py
"""Forest covertype dataset. A classic dataset for classification benchmarks, featuring categorical and real-valued features. The dataset page is available from UCI Machine Learning Repository https://archive.ics.uci.edu/ml/datasets/Covertype Courtesy of Jock A. Blackard and Colorado State University. """ # Au...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_svmlight_format_io.py
sklearn/datasets/_svmlight_format_io.py
"""This module implements a loader and dumper for the svmlight format This format is a text-based format, with one sample per line. It does not store zero valued features hence is suitable for sparse dataset. The first element of each line can be used to store a target variable to predict. This format is used as the...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_california_housing.py
sklearn/datasets/_california_housing.py
"""California housing dataset. The original database is available from StatLib http://lib.stat.cmu.edu/datasets/ The data contains 20,640 observations on 9 variables. This dataset contains the median house value as target variable and the following input variables (features): average income, housing average age...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_samples_generator.py
sklearn/datasets/_samples_generator.py
""" Generate samples of synthetic data sets. """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import array import numbers from collections.abc import Iterable from numbers import Integral, Real import numpy as np import scipy.sparse as sp from scipy import linalg from sklearn.prepr...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/__init__.py
sklearn/datasets/__init__.py
"""Utilities to load popular datasets and artificial data generators.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import textwrap from sklearn.datasets._base import ( clear_data_home, fetch_file, get_data_home, load_breast_cancer, load_diabetes, load_digi...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_lfw.py
sklearn/datasets/_lfw.py
"""Labeled Faces in the Wild (LFW) dataset This dataset is a collection of JPEG pictures of famous people collected over the internet, all details are available on the official website: http://vis-www.cs.umass.edu/lfw/ """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import log...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_twenty_newsgroups.py
sklearn/datasets/_twenty_newsgroups.py
"""Caching loader for the 20 newsgroups text classification dataset. The description of the dataset is available on the official website at: http://people.csail.mit.edu/jrennie/20Newsgroups/ Quoting the introduction: The 20 Newsgroups data set is a collection of approximately 20,000 newsgroup documents...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_species_distributions.py
sklearn/datasets/_species_distributions.py
""" ============================= Species distribution dataset ============================= This dataset represents the geographic distribution of species. The dataset is provided by Phillips et. al. (2006). The two species are: - `"Bradypus variegatus" <http://www.iucnredlist.org/details/3038/0>`_ , the Bro...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_olivetti_faces.py
sklearn/datasets/_olivetti_faces.py
"""Modified Olivetti faces dataset. The original database was available from (now defunct) https://www.cl.cam.ac.uk/research/dtg/attarchive/facedatabase.html The version retrieved here comes in MATLAB format from the personal web page of Sam Roweis: https://cs.nyu.edu/~roweis/ """ # Authors: The scikit-lea...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_arff_parser.py
sklearn/datasets/_arff_parser.py
"""Implementation of ARFF parsers: via LIAC-ARFF and pandas.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import itertools import re from collections import OrderedDict from collections.abc import Generator from typing import List import numpy as np import scipy as sp from sklea...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/_openml.py
sklearn/datasets/_openml.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import gzip import hashlib import json import os import shutil import time from contextlib import closing from functools import wraps from os.path import join from tempfile import TemporaryDirectory from typing import Any, Callable, Dict, L...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
true
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/tests/test_20news.py
sklearn/datasets/tests/test_20news.py
"""Test the 20news downloader, if the data is available, or if specifically requested via environment variable (e.g. for CI jobs).""" from functools import partial from unittest.mock import patch import numpy as np import pytest import scipy.sparse as sp from sklearn.datasets.tests.test_common import ( check_as_...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/tests/test_samples_generator.py
sklearn/datasets/tests/test_samples_generator.py
import re from collections import defaultdict from functools import partial import numpy as np import pytest import scipy.sparse as sp from sklearn.datasets import ( make_biclusters, make_blobs, make_checkerboard, make_circles, make_classification, make_friedman1, make_friedman2, make_...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/tests/test_common.py
sklearn/datasets/tests/test_common.py
"""Test loaders for common functionality.""" import inspect import os import numpy as np import pytest import sklearn.datasets def is_pillow_installed(): try: import PIL # noqa: F401 return True except ImportError: return False FETCH_PYTEST_MARKERS = { "return_X_y": { ...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/tests/test_base.py
sklearn/datasets/tests/test_base.py
import hashlib import io import os import re import shutil import tempfile import warnings from functools import partial from importlib import resources from pathlib import Path from pickle import dumps, loads from unittest.mock import Mock from urllib.error import HTTPError from urllib.parse import urlparse import nu...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false
scikit-learn/scikit-learn
https://github.com/scikit-learn/scikit-learn/blob/6dce55ebff962076625db46ab70b6b1c939f423b/sklearn/datasets/tests/test_rcv1.py
sklearn/datasets/tests/test_rcv1.py
"""Test the rcv1 loader, if the data is available, or if specifically requested via environment variable (e.g. for CI jobs).""" from functools import partial import numpy as np import scipy.sparse as sp from sklearn.datasets.tests.test_common import check_return_X_y from sklearn.utils._testing import assert_almost_e...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false