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 a416fbd commit b1e91feCopy full SHA for b1e91fe
1 file changed
openml/_api/resources/base/resources.py
@@ -12,7 +12,8 @@
12
if TYPE_CHECKING:
13
import pandas as pd
14
15
- from openml import OpenMLEvaluation
+ from openml.estimation_procedures import OpenMLEstimationProcedure
16
+ from openml.evaluations.evaluation import OpenMLEvaluation
17
from openml.flows.flow import OpenMLFlow
18
from openml.setups.setup import OpenMLSetup
19
from openml.tasks.task import OpenMLTask, TaskType
@@ -87,6 +88,9 @@ class EstimationProcedureAPI(ResourceAPI):
87
88
89
resource_type: ResourceType = ResourceType.ESTIMATION_PROCEDURE
90
91
+ @abstractmethod
92
+ def list(self) -> list[OpenMLEstimationProcedure]: ...
93
+
94
95
class EvaluationAPI(ResourceAPI):
96
"""Abstract API interface for evaluation resources."""
0 commit comments