/
githubmirror
/
scikit-learn
Обзор
Документация
Войти
/
githubmirror
/
scikit-learn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
sklearn/utils/metadata_routing.py
23 строки
611 B
Adrin Jalali
FIX metaedata routing with dask backend on joblib (#34077)
09 июн 2026, 20:16
Не верифицирован
09 июн 2026, 20:16
da47f5c
Код
Авторство
О чём код?
"""Utilities to route metadata within scikit-learn estimators.""" # This module is not a separate sub-folder since that would result in a circular # import issue. # # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause from sklearn.utils._metadata_requests import ( # noqa: F401 UNCHANGED, UNUSED, WARN, MetadataRequest, MetadataRouter, MethodMapping, _manual_routing, _MetadataRequester, _raise_for_params, _raise_for_unsupported_routing, _routing_enabled, _RoutingNotSupportedMixin, get_routing_for_object, process_routing, )