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/manifold/__init__.py
sklearn/manifold/__init__.py
"""Data embedding techniques.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from sklearn.manifold._classical_mds import ClassicalMDS from sklearn.manifold._isomap import Isomap from sklearn.manifold._locally_linear import ( LocallyLinearEmbedding, locally_linear_embedding, ...
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/manifold/_t_sne.py
sklearn/manifold/_t_sne.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause # This is the exact and Barnes-Hut t-SNE implementation. There are other # modifications of the algorithm: # * Fast Optimization for t-SNE: # https://cseweb.ucsd.edu/~lvdmaaten/workshops/nips2010/papers/vandermaaten.pdf from numbers impo...
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/manifold/_locally_linear.py
sklearn/manifold/_locally_linear.py
"""Locally Linear Embedding""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from numbers import Integral, Real import numpy as np from scipy.linalg import eigh, qr, solve, svd from scipy.sparse import csr_matrix, eye, lil_matrix from scipy.sparse.linalg import eigsh from sklearn.ba...
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/manifold/_spectral_embedding.py
sklearn/manifold/_spectral_embedding.py
"""Spectral Embedding.""" # 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 from scipy.linalg import eigh from scipy.sparse.csgraph import connected_components from scipy.sparse.linalg import 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/manifold/tests/test_locally_linear.py
sklearn/manifold/tests/test_locally_linear.py
from itertools import product import numpy as np import pytest from scipy import linalg from sklearn import manifold, neighbors from sklearn.datasets import make_blobs from sklearn.manifold._locally_linear import barycenter_kneighbors_graph from sklearn.utils._testing import ( assert_allclose, assert_array_eq...
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/manifold/tests/test_t_sne.py
sklearn/manifold/tests/test_t_sne.py
import re import sys from io import StringIO import numpy as np import pytest import scipy.sparse as sp from numpy.testing import assert_allclose from scipy.optimize import check_grad from scipy.spatial.distance import pdist, squareform from sklearn import config_context from sklearn.datasets import make_blobs # myp...
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/manifold/tests/test_spectral_embedding.py
sklearn/manifold/tests/test_spectral_embedding.py
import itertools from unittest.mock import Mock import numpy as np import pytest from scipy import sparse from scipy.linalg import eigh from scipy.sparse.linalg import eigsh, lobpcg from sklearn.cluster import KMeans from sklearn.datasets import make_blobs from sklearn.manifold import SpectralEmbedding, _spectral_emb...
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/manifold/tests/test_classical_mds.py
sklearn/manifold/tests/test_classical_mds.py
import numpy as np import pytest from numpy.testing import assert_allclose from sklearn.datasets import load_iris from sklearn.decomposition import PCA from sklearn.manifold import ClassicalMDS from sklearn.metrics import euclidean_distances def test_classical_mds_equivalent_to_pca(): X, _ = load_iris(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/manifold/tests/__init__.py
sklearn/manifold/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/manifold/tests/test_mds.py
sklearn/manifold/tests/test_mds.py
from unittest.mock import Mock import numpy as np import pytest from numpy.testing import assert_allclose, assert_array_almost_equal, assert_equal from sklearn.datasets import load_digits, load_iris from sklearn.manifold import ClassicalMDS from sklearn.manifold import _mds as mds from sklearn.metrics import euclidea...
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/manifold/tests/test_isomap.py
sklearn/manifold/tests/test_isomap.py
import math from itertools import product import numpy as np import pytest from scipy.sparse import rand as sparse_rand from sklearn import clone, datasets, manifold, neighbors, pipeline, preprocessing from sklearn.datasets import make_blobs from sklearn.metrics.pairwise import pairwise_distances from sklearn.utils._...
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/neural_network/_rbm.py
sklearn/neural_network/_rbm.py
"""Restricted Boltzmann Machine""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import time from numbers import Integral, Real import numpy as np import scipy.sparse as sp from scipy.special import expit # logistic function from sklearn.base import ( BaseEstimator, ClassNa...
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/neural_network/_base.py
sklearn/neural_network/_base.py
"""Utilities for the neural network modules""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import numpy as np from scipy.special import expit as logistic_sigmoid from scipy.special import xlogy def inplace_identity(X): """Simply leave the input array unchanged. Parameters...
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/neural_network/_stochastic_optimizers.py
sklearn/neural_network/_stochastic_optimizers.py
"""Stochastic optimization methods for MLP""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import numpy as np class BaseOptimizer: """Base (Stochastic) gradient descent optimizer Parameters ---------- learning_rate_init : float, default=0.1 The initial lear...
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/neural_network/_multilayer_perceptron.py
sklearn/neural_network/_multilayer_perceptron.py
"""Multi-layer Perceptron""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import warnings from abc import ABC, abstractmethod from itertools import chain, pairwise from numbers import Integral, Real import numpy as np import scipy.optimize from sklearn.base import ( BaseEstimat...
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/neural_network/__init__.py
sklearn/neural_network/__init__.py
"""Models based on neural networks.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from sklearn.neural_network._multilayer_perceptron import MLPClassifier, MLPRegressor from sklearn.neural_network._rbm import BernoulliRBM __all__ = ["BernoulliRBM", "MLPClassifier", "MLPRegressor"]
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/neural_network/tests/test_base.py
sklearn/neural_network/tests/test_base.py
import numpy as np import pytest from sklearn._loss import HalfPoissonLoss from sklearn.neural_network._base import binary_log_loss, log_loss, poisson_loss def test_binary_log_loss_1_prob_finite(): # y_proba is equal to one should result in a finite logloss y_true = np.array([[0, 0, 1]]).T y_prob = np.ar...
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/neural_network/tests/test_mlp.py
sklearn/neural_network/tests/test_mlp.py
""" Testing for Multi-layer Perceptron module (sklearn.neural_network) """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import re import warnings import joblib import numpy as np import pytest from sklearn.datasets import ( load_digits, load_iris, make_multilabel_classi...
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/neural_network/tests/test_stochastic_optimizers.py
sklearn/neural_network/tests/test_stochastic_optimizers.py
import numpy as np from sklearn.neural_network._stochastic_optimizers import ( AdamOptimizer, BaseOptimizer, SGDOptimizer, ) from sklearn.utils._testing import assert_array_equal shapes = [(4, 6), (6, 8), (7, 8, 9)] def test_base_optimizer(): for lr in [10**i for i in range(-3, 4)]: optimize...
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/neural_network/tests/__init__.py
sklearn/neural_network/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/neural_network/tests/test_rbm.py
sklearn/neural_network/tests/test_rbm.py
import re import sys from io import StringIO import numpy as np import pytest from sklearn.datasets import load_digits from sklearn.neural_network import BernoulliRBM from sklearn.utils._testing import ( assert_allclose, assert_almost_equal, assert_array_equal, ) from sklearn.utils.fixes import CSC_CONTAI...
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/externals/_arff.py
sklearn/externals/_arff.py
# ============================================================================= # Federal University of Rio Grande do Sul (UFRGS) # Connectionist Artificial Intelligence Laboratory (LIAC) # Renato de Pontes Pereira - rppereira@inf.ufrgs.br # ============================================================================= ...
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/externals/conftest.py
sklearn/externals/conftest.py
# Do not collect any tests in externals. This is more robust than using # --ignore because --ignore needs a path and it is not convenient to pass in # the externals path (very long install-dependent path in site-packages) when # using --pyargs def pytest_ignore_collect(collection_path, config): return True
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/externals/__init__.py
sklearn/externals/__init__.py
""" External, bundled dependencies. """
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/externals/_array_api_compat_vendor.py
sklearn/externals/_array_api_compat_vendor.py
# DO NOT RENAME THIS FILE # This is a hook for array_api_extra/_lib/_compat.py # to co-vendor array_api_compat and potentially override its functions. from .array_api_compat import * # noqa: F403
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/externals/_scipy/__init__.py
sklearn/externals/_scipy/__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/externals/_scipy/sparse/__init__.py
sklearn/externals/_scipy/sparse/__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/externals/_scipy/sparse/csgraph/_laplacian.py
sklearn/externals/_scipy/sparse/csgraph/_laplacian.py
""" This file is a copy of the scipy.sparse.csgraph._laplacian module from SciPy 1.12 scipy.sparse.csgraph.laplacian supports sparse arrays only starting from Scipy 1.12, see https://github.com/scipy/scipy/pull/19156. This vendored file can be removed as soon as Scipy 1.12 becomes the minimum supported version. Lapla...
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/externals/_scipy/sparse/csgraph/__init__.py
sklearn/externals/_scipy/sparse/csgraph/__init__.py
from ._laplacian import laplacian
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/externals/_packaging/_structures.py
sklearn/externals/_packaging/_structures.py
"""Vendoered from https://github.com/pypa/packaging/blob/main/packaging/_structures.py """ # Copyright (c) Donald Stufft and individual contributors. # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met:...
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/externals/_packaging/version.py
sklearn/externals/_packaging/version.py
"""Vendored from https://github.com/pypa/packaging/blob/main/packaging/version.py """ # Copyright (c) Donald Stufft and individual contributors. # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # ...
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/externals/_packaging/__init__.py
sklearn/externals/_packaging/__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/externals/array_api_compat/_internal.py
sklearn/externals/array_api_compat/_internal.py
""" Internal helpers """ from collections.abc import Callable from functools import wraps from inspect import signature from types import ModuleType from typing import TypeVar _T = TypeVar("_T") def get_xp(xp: ModuleType) -> Callable[[Callable[..., _T]], Callable[..., _T]]: """ Decorator to automatically 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/externals/array_api_compat/__init__.py
sklearn/externals/array_api_compat/__init__.py
""" NumPy Array API compatibility library This is a small wrapper around NumPy, CuPy, JAX, sparse and others that are compatible with the Array API standard https://data-apis.org/array-api/latest/. See also NEP 47 https://numpy.org/neps/nep-0047-array-api-standard.html. Unlike array_api_strict, this is not a strict m...
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/externals/array_api_compat/dask/__init__.py
sklearn/externals/array_api_compat/dask/__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/externals/array_api_compat/dask/array/_aliases.py
sklearn/externals/array_api_compat/dask/array/_aliases.py
# pyright: reportPrivateUsage=false # pyright: reportUnknownArgumentType=false # pyright: reportUnknownMemberType=false # pyright: reportUnknownVariableType=false from __future__ import annotations from builtins import bool as py_bool from collections.abc import Callable from typing import TYPE_CHECKING, Any if TYPE...
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/externals/array_api_compat/dask/array/linalg.py
sklearn/externals/array_api_compat/dask/array/linalg.py
from __future__ import annotations from typing import Literal import dask.array as da # The `matmul` and `tensordot` functions are in both the main and linalg namespaces from dask.array import matmul, outer, tensordot # Exports from dask.array.linalg import * # noqa: F403 from ..._internal import get_xp from ...c...
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/externals/array_api_compat/dask/array/__init__.py
sklearn/externals/array_api_compat/dask/array/__init__.py
from typing import Final from dask.array import * # noqa: F403 # These imports may overwrite names from the import * above. from ._aliases import * # noqa: F403 __array_api_version__: Final = "2024.12" # See the comment in the numpy __init__.py __import__(__package__ + '.linalg') __import__(__package__ + '.fft')
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/externals/array_api_compat/dask/array/_info.py
sklearn/externals/array_api_compat/dask/array/_info.py
""" Array API Inspection namespace This is the namespace for inspection functions as defined by the array API standard. See https://data-apis.org/array-api/latest/API_specification/inspection.html for more details. """ # pyright: reportPrivateUsage=false from __future__ import annotations from typing import Litera...
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/externals/array_api_compat/dask/array/fft.py
sklearn/externals/array_api_compat/dask/array/fft.py
from dask.array.fft import * # noqa: F403 # dask.array.fft doesn't have __all__. If it is added, replace this with # # from dask.array.fft import __all__ as linalg_all _n = {} exec('from dask.array.fft import *', _n) for k in ("__builtins__", "Sequence", "annotations", "warnings"): _n.pop(k, None) fft_all = list(_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/externals/array_api_compat/common/_typing.py
sklearn/externals/array_api_compat/common/_typing.py
from __future__ import annotations from collections.abc import Mapping from types import ModuleType as Namespace from typing import ( TYPE_CHECKING, Literal, Protocol, TypeAlias, TypedDict, TypeVar, final, ) if TYPE_CHECKING: from _typeshed import Incomplete SupportsBufferProtocol...
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/externals/array_api_compat/common/_fft.py
sklearn/externals/array_api_compat/common/_fft.py
from __future__ import annotations from collections.abc import Sequence from typing import Literal, TypeAlias from ._typing import Array, Device, DType, Namespace _Norm: TypeAlias = Literal["backward", "ortho", "forward"] # Note: NumPy fft functions improperly upcast float32 and complex64 to # complex128, which is ...
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/externals/array_api_compat/common/_aliases.py
sklearn/externals/array_api_compat/common/_aliases.py
""" These are functions that are just aliases of existing functions in NumPy. """ from __future__ import annotations import inspect from typing import TYPE_CHECKING, Any, NamedTuple, Optional, Sequence, cast from ._helpers import _check_device, array_namespace from ._helpers import device as _get_device from ._helpe...
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/externals/array_api_compat/common/_linalg.py
sklearn/externals/array_api_compat/common/_linalg.py
from __future__ import annotations import math from typing import Literal, NamedTuple, cast import numpy as np if np.__version__[0] == "2": from numpy.lib.array_utils import normalize_axis_tuple else: from numpy.core.numeric import normalize_axis_tuple from .._internal import get_xp from ._aliases import is...
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/externals/array_api_compat/common/_helpers.py
sklearn/externals/array_api_compat/common/_helpers.py
""" Various helper functions which are not part of the spec. Functions which start with an underscore are for internal use only but helpers that are in __all__ are intended as additional helper functions for use by end users of the compat library. """ from __future__ import annotations import inspect import math imp...
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/externals/array_api_compat/common/__init__.py
sklearn/externals/array_api_compat/common/__init__.py
from ._helpers import * # noqa: F403
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/externals/array_api_compat/cupy/_typing.py
sklearn/externals/array_api_compat/cupy/_typing.py
from __future__ import annotations __all__ = ["Array", "DType", "Device"] _all_ignore = ["cp"] from typing import TYPE_CHECKING import cupy as cp from cupy import ndarray as Array from cupy.cuda.device import Device if TYPE_CHECKING: # NumPy 1.x on Python 3.10 fails to parse np.dtype[] DType = cp.dtype[ ...
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/externals/array_api_compat/cupy/_aliases.py
sklearn/externals/array_api_compat/cupy/_aliases.py
from __future__ import annotations from typing import Optional import cupy as cp from ..common import _aliases, _helpers from ..common._typing import NestedSequence, SupportsBufferProtocol from .._internal import get_xp from ._info import __array_namespace_info__ from ._typing import Array, Device, DType bool = cp....
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/externals/array_api_compat/cupy/linalg.py
sklearn/externals/array_api_compat/cupy/linalg.py
from cupy.linalg import * # noqa: F403 # cupy.linalg doesn't have __all__. If it is added, replace this with # # from cupy.linalg import __all__ as linalg_all _n = {} exec('from cupy.linalg import *', _n) del _n['__builtins__'] linalg_all = list(_n) del _n from ..common import _linalg from .._internal import get_xp 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/externals/array_api_compat/cupy/__init__.py
sklearn/externals/array_api_compat/cupy/__init__.py
from cupy import * # noqa: F403 # from cupy import * doesn't overwrite these builtin names from cupy import abs, max, min, round # noqa: F401 # These imports may overwrite names from the import * above. from ._aliases import * # noqa: F403 # See the comment in the numpy __init__.py __import__(__package__ + '.linalg'...
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/externals/array_api_compat/cupy/_info.py
sklearn/externals/array_api_compat/cupy/_info.py
""" Array API Inspection namespace This is the namespace for inspection functions as defined by the array API standard. See https://data-apis.org/array-api/latest/API_specification/inspection.html for more details. """ from cupy import ( dtype, cuda, bool_ as bool, intp, int8, int16, int32...
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/externals/array_api_compat/cupy/fft.py
sklearn/externals/array_api_compat/cupy/fft.py
from cupy.fft import * # noqa: F403 # cupy.fft doesn't have __all__. If it is added, replace this with # # from cupy.fft import __all__ as linalg_all _n = {} exec('from cupy.fft import *', _n) del _n['__builtins__'] fft_all = list(_n) del _n from ..common import _fft from .._internal import get_xp import cupy as cp ...
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/externals/array_api_compat/numpy/_typing.py
sklearn/externals/array_api_compat/numpy/_typing.py
from __future__ import annotations from typing import TYPE_CHECKING, Any, Literal, TypeAlias import numpy as np Device: TypeAlias = Literal["cpu"] if TYPE_CHECKING: # NumPy 1.x on Python 3.10 fails to parse np.dtype[] DType: TypeAlias = np.dtype[ np.bool_ | np.integer[Any] | np.floa...
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/externals/array_api_compat/numpy/_aliases.py
sklearn/externals/array_api_compat/numpy/_aliases.py
# pyright: reportPrivateUsage=false from __future__ import annotations from builtins import bool as py_bool from typing import TYPE_CHECKING, Any, Literal, TypeAlias, cast import numpy as np from .._internal import get_xp from ..common import _aliases, _helpers from ..common._typing import NestedSequence, SupportsBu...
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/externals/array_api_compat/numpy/linalg.py
sklearn/externals/array_api_compat/numpy/linalg.py
# pyright: reportAttributeAccessIssue=false # pyright: reportUnknownArgumentType=false # pyright: reportUnknownMemberType=false # pyright: reportUnknownVariableType=false from __future__ import annotations import numpy as np # intersection of `np.linalg.__all__` on numpy 1.22 and 2.2, minus `_linalg.__all__` from 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/externals/array_api_compat/numpy/__init__.py
sklearn/externals/array_api_compat/numpy/__init__.py
# ruff: noqa: PLC0414 from typing import Final from numpy import * # noqa: F403 # pyright: ignore[reportWildcardImportFromLibrary] # from numpy import * doesn't overwrite these builtin names from numpy import abs as abs from numpy import max as max from numpy import min as min from numpy import round as round # Th...
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/externals/array_api_compat/numpy/_info.py
sklearn/externals/array_api_compat/numpy/_info.py
""" Array API Inspection namespace This is the namespace for inspection functions as defined by the array API standard. See https://data-apis.org/array-api/latest/API_specification/inspection.html for more details. """ from __future__ import annotations from numpy import bool_ as bool from numpy import ( complex...
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/externals/array_api_compat/numpy/fft.py
sklearn/externals/array_api_compat/numpy/fft.py
import numpy as np from numpy.fft import __all__ as fft_all from numpy.fft import fft2, ifft2, irfft2, rfft2 from .._internal import get_xp from ..common import _fft fft = get_xp(np)(_fft.fft) ifft = get_xp(np)(_fft.ifft) fftn = get_xp(np)(_fft.fftn) ifftn = get_xp(np)(_fft.ifftn) rfft = get_xp(np)(_fft.rfft) irfft =...
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/externals/array_api_compat/torch/_typing.py
sklearn/externals/array_api_compat/torch/_typing.py
__all__ = ["Array", "Device", "DType"] from torch import device as Device, dtype as DType, Tensor as Array
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/externals/array_api_compat/torch/_aliases.py
sklearn/externals/array_api_compat/torch/_aliases.py
from __future__ import annotations from functools import reduce as _reduce, wraps as _wraps from builtins import all as _builtin_all, any as _builtin_any from typing import Any, List, Optional, Sequence, Tuple, Union, Literal import torch from .._internal import get_xp from ..common import _aliases from ..common._ty...
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/externals/array_api_compat/torch/linalg.py
sklearn/externals/array_api_compat/torch/linalg.py
from __future__ import annotations import torch from typing import Optional, Union, Tuple from torch.linalg import * # noqa: F403 # torch.linalg doesn't define __all__ # from torch.linalg import __all__ as linalg_all from torch import linalg as torch_linalg linalg_all = [i for i in dir(torch_linalg) if not i.startsw...
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/externals/array_api_compat/torch/__init__.py
sklearn/externals/array_api_compat/torch/__init__.py
from torch import * # noqa: F403 # Several names are not included in the above import * import torch for n in dir(torch): if (n.startswith('_') or n.endswith('_') or 'cuda' in n or 'cpu' in n or 'backward' in n): continue exec(f"{n} = torch.{n}") del n # These imports m...
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/externals/array_api_compat/torch/_info.py
sklearn/externals/array_api_compat/torch/_info.py
""" Array API Inspection namespace This is the namespace for inspection functions as defined by the array API standard. See https://data-apis.org/array-api/latest/API_specification/inspection.html for more details. """ import torch from functools import cache class __array_namespace_info__: """ Get the 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/externals/array_api_compat/torch/fft.py
sklearn/externals/array_api_compat/torch/fft.py
from __future__ import annotations from typing import Union, Sequence, Literal import torch import torch.fft from torch.fft import * # noqa: F403 from ._typing import Array # Several torch fft functions do not map axes to dim def fftn( x: Array, /, *, s: Sequence[int] = None, axes: Sequence[int...
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/externals/_numpydoc/docscrape.py
sklearn/externals/_numpydoc/docscrape.py
"""Extract reference documentation from the NumPy source tree.""" import copy import inspect import pydoc import re import sys import textwrap from collections import namedtuple from collections.abc import Callable, Mapping from functools import cached_property from warnings import warn def strip_blank_lines(l): ...
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/externals/array_api_extra/testing.py
sklearn/externals/array_api_extra/testing.py
""" Public testing utilities. See also _lib._testing for additional private testing utilities. """ from __future__ import annotations import contextlib import enum import warnings from collections.abc import Callable, Generator, Iterator, Sequence from functools import wraps from types import ModuleType from typing ...
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/externals/array_api_extra/_delegation.py
sklearn/externals/array_api_extra/_delegation.py
"""Delegation to existing implementations for Public API Functions.""" from collections.abc import Sequence from types import ModuleType from typing import Literal from ._lib import _funcs from ._lib._utils._compat import ( array_namespace, is_cupy_namespace, is_dask_namespace, is_jax_namespace, 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/externals/array_api_extra/__init__.py
sklearn/externals/array_api_extra/__init__.py
"""Extra array functions built on top of the array API standard.""" from ._delegation import isclose, nan_to_num, one_hot, pad from ._lib._at import at from ._lib._funcs import ( apply_where, atleast_nd, broadcast_shapes, cov, create_diagonal, default_dtype, expand_dims, kron, nuniq...
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/externals/array_api_extra/_lib/_lazy.py
sklearn/externals/array_api_extra/_lib/_lazy.py
"""Public API Functions.""" from __future__ import annotations import math from collections.abc import Callable, Sequence from functools import partial, wraps from types import ModuleType from typing import TYPE_CHECKING, Any, ParamSpec, TypeAlias, cast, overload from ._funcs import broadcast_shapes from ._utils imp...
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/externals/array_api_extra/_lib/_funcs.py
sklearn/externals/array_api_extra/_lib/_funcs.py
"""Array-agnostic implementations for the public API.""" import math import warnings from collections.abc import Callable, Sequence from types import ModuleType, NoneType from typing import Literal, cast, overload from ._at import at from ._utils import _compat, _helpers from ._utils._compat import array_namespace, 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/externals/array_api_extra/_lib/_testing.py
sklearn/externals/array_api_extra/_lib/_testing.py
""" Testing utilities. Note that this is private API; don't expect it to be stable. See also ..testing for public testing utilities. """ from __future__ import annotations import math from types import ModuleType from typing import Any, cast import numpy as np import pytest from ._utils._compat import ( array_...
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/externals/array_api_extra/_lib/__init__.py
sklearn/externals/array_api_extra/_lib/__init__.py
"""Internals of array-api-extra."""
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/externals/array_api_extra/_lib/_backends.py
sklearn/externals/array_api_extra/_lib/_backends.py
"""Backends against which array-api-extra runs its tests.""" from __future__ import annotations from enum import Enum from typing import Any import numpy as np import pytest __all__ = ["NUMPY_VERSION", "Backend"] NUMPY_VERSION = tuple(int(v) for v in np.__version__.split(".")[:3]) # pyright: ignore[reportUnknownA...
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/externals/array_api_extra/_lib/_at.py
sklearn/externals/array_api_extra/_lib/_at.py
"""Update operations for read-only arrays.""" from __future__ import annotations import operator from collections.abc import Callable from enum import Enum from types import ModuleType from typing import TYPE_CHECKING, ClassVar, cast from ._utils import _compat from ._utils._compat import ( array_namespace, ...
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/externals/array_api_extra/_lib/_utils/_typing.py
sklearn/externals/array_api_extra/_lib/_utils/_typing.py
# numpydoc ignore=GL08 # pylint: disable=missing-module-docstring,duplicate-code Array = object DType = object Device = object GetIndex = object SetIndex = object __all__ = ["Array", "DType", "Device", "GetIndex", "SetIndex"]
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/externals/array_api_extra/_lib/_utils/_compat.py
sklearn/externals/array_api_extra/_lib/_utils/_compat.py
"""Acquire helpers from array-api-compat.""" # Allow packages that vendor both `array-api-extra` and # `array-api-compat` to override the import location # pylint: disable=duplicate-code try: from ...._array_api_compat_vendor import ( array_namespace, device, is_array_api_obj, is_ar...
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/externals/array_api_extra/_lib/_utils/_helpers.py
sklearn/externals/array_api_extra/_lib/_utils/_helpers.py
"""Helper functions used by `array_api_extra/_funcs.py`.""" from __future__ import annotations import io import math import pickle import types from collections.abc import Callable, Generator, Iterable from functools import wraps from types import ModuleType from typing import ( TYPE_CHECKING, Any, ClassV...
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/externals/array_api_extra/_lib/_utils/__init__.py
sklearn/externals/array_api_extra/_lib/_utils/__init__.py
"""Modules housing private utility functions."""
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/svm/_base.py
sklearn/svm/_base.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import warnings from abc import ABCMeta, abstractmethod from numbers import Integral, Real import numpy as np import scipy.sparse as sp from sklearn.base import BaseEstimator, ClassifierMixin, _fit_context from sklearn.exceptions import C...
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/svm/__init__.py
sklearn/svm/__init__.py
"""Support vector machine algorithms.""" # See http://scikit-learn.sourceforge.net/modules/svm.html for complete # documentation. # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from sklearn.svm._bounds import l1_min_c from sklearn.svm._classes import ( SVC, SVR, LinearSVC,...
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/svm/_classes.py
sklearn/svm/_classes.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 BaseEstimator, OutlierMixin, RegressorMixin, _fit_context from sklearn.linear_model._base import ( LinearClassifierMixin, LinearModel, SparseCoefMi...
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/svm/_bounds.py
sklearn/svm/_bounds.py
"""Determination of parameter bounds""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from numbers import Real import numpy as np from sklearn.preprocessing import LabelBinarizer from sklearn.utils._param_validation import Interval, StrOptions, validate_params from sklearn.utils.ext...
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/svm/tests/test_sparse.py
sklearn/svm/tests/test_sparse.py
import numpy as np import pytest from scipy import sparse from sklearn import base, datasets, linear_model, svm from sklearn.datasets import load_digits, make_blobs, make_classification from sklearn.exceptions import ConvergenceWarning from sklearn.svm.tests import test_svm from sklearn.utils._testing import ( ass...
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/svm/tests/__init__.py
sklearn/svm/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/svm/tests/test_bounds.py
sklearn/svm/tests/test_bounds.py
import numpy as np import pytest from scipy import stats from sklearn.linear_model import LogisticRegression from sklearn.svm import LinearSVC from sklearn.svm._bounds import l1_min_c from sklearn.svm._newrand import bounded_rand_int_wrap, set_seed_wrap from sklearn.utils.fixes import CSR_CONTAINERS @pytest.mark.par...
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/svm/tests/test_svm.py
sklearn/svm/tests/test_svm.py
""" Testing for Support Vector Machine module (sklearn.svm) TODO: remove hard coded numerical results when possible """ import numpy as np import pytest from numpy.testing import ( assert_allclose, assert_almost_equal, assert_array_almost_equal, assert_array_equal, ) from sklearn import base, dataset...
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/tree/__init__.py
sklearn/tree/__init__.py
"""Decision tree based models for classification and regression.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from sklearn.tree._classes import ( BaseDecisionTree, DecisionTreeClassifier, DecisionTreeRegressor, ExtraTreeClassifier, ExtraTreeRegressor, ) 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/tree/_classes.py
sklearn/tree/_classes.py
""" This module gathers tree-based methods, including decision, regression and randomized trees. Single and multi-output problems are both handled. """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import copy import numbers from abc import ABCMeta, abstractmethod from math import cei...
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/tree/_reingold_tilford.py
sklearn/tree/_reingold_tilford.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import numpy as np class DrawTree: def __init__(self, tree, parent=None, depth=0, number=1): self.x = -1.0 self.y = depth self.tree = tree self.children = [ DrawTree(c, self, depth + 1, 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/tree/_export.py
sklearn/tree/_export.py
""" This module defines export functions for decision trees. """ # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from collections.abc import Iterable from io import StringIO from numbers import Integral import numpy as np from sklearn.base import is_classifier from sklearn.tree 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/tree/tests/test_export.py
sklearn/tree/tests/test_export.py
""" Testing for export functions of decision trees (sklearn.tree.export). """ from io import StringIO from re import finditer, search from textwrap import dedent import numpy as np import pytest from numpy.random import RandomState from sklearn.base import is_classifier from sklearn.ensemble import GradientBoostingC...
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/tree/tests/test_reingold_tilford.py
sklearn/tree/tests/test_reingold_tilford.py
import numpy as np import pytest from sklearn.tree._reingold_tilford import Tree, buchheim simple_tree = Tree("", 0, Tree("", 1), Tree("", 2)) bigger_tree = Tree( "", 0, Tree( "", 1, Tree("", 3), Tree("", 4, Tree("", 7), Tree("", 8)), ), Tree("", 2, Tree("", 5), Tr...
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/tree/tests/test_monotonic_tree.py
sklearn/tree/tests/test_monotonic_tree.py
import numpy as np import pytest from sklearn.datasets import make_classification, make_regression from sklearn.ensemble import ( ExtraTreesClassifier, ExtraTreesRegressor, RandomForestClassifier, RandomForestRegressor, ) from sklearn.tree import ( DecisionTreeClassifier, DecisionTreeRegressor,...
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/tree/tests/test_tree.py
sklearn/tree/tests/test_tree.py
""" Testing for the tree module (sklearn.tree). """ import copy import copyreg import io import pickle import re import struct from itertools import chain, pairwise, product import joblib import numpy as np import pytest from joblib.numpy_pickle import NumpyPickler from numpy.testing import assert_allclose from skle...
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/tree/tests/__init__.py
sklearn/tree/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/tree/tests/test_fenwick.py
sklearn/tree/tests/test_fenwick.py
import numpy as np from sklearn.tree._utils import PytestWeightedFenwickTree def test_cython_weighted_fenwick_tree(global_random_seed): """ Test Cython's weighted Fenwick tree implementation """ rng = np.random.default_rng(global_random_seed) n = 100 indices = rng.permutation(n) y = rng....
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/frozen/_frozen.py
sklearn/frozen/_frozen.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from copy import deepcopy from sklearn.base import BaseEstimator from sklearn.exceptions import NotFittedError from sklearn.utils import get_tags from sklearn.utils.metaestimators import available_if from sklearn.utils.validation import ch...
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/frozen/__init__.py
sklearn/frozen/__init__.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from sklearn.frozen._frozen import FrozenEstimator __all__ = ["FrozenEstimator"]
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/frozen/tests/__init__.py
sklearn/frozen/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/frozen/tests/test_frozen.py
sklearn/frozen/tests/test_frozen.py
# Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import re import numpy as np import pytest from numpy.testing import assert_array_equal from sklearn import config_context from sklearn.base import ( BaseEstimator, clone, is_classifier, is_clusterer, is_outlier_detect...
python
BSD-3-Clause
6dce55ebff962076625db46ab70b6b1c939f423b
2026-01-04T14:38:25.175347Z
false