We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c06e3e3 commit 2c9c977Copy full SHA for 2c9c977
sklearn/utils/metaestimators.py
@@ -5,7 +5,6 @@
5
6
from abc import ABCMeta, abstractmethod
7
from contextlib import suppress
8
-from typing import Any, List
9
10
import numpy as np
11
@@ -19,12 +18,12 @@
19
18
20
class _BaseComposition(BaseEstimator, metaclass=ABCMeta):
21
"""Base class for estimators that are composed of named sub-estimators.
22
-
+
23
This abstract class provides parameter management functionality for
24
meta-estimators that contain collections of named estimators. It handles
25
the complex logic for getting and setting parameters on nested estimators
26
using the "estimator_name__parameter" syntax.
27
28
The class is designed to work with any attribute containing a list of
29
(name, estimator) tuples.
30
"""
0 commit comments