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 537bff8 commit c107ee8Copy full SHA for c107ee8
autoPyTorch/api/base_task.py
@@ -205,16 +205,13 @@ def __init__(
205
206
self.InputValidator: Optional[BaseInputValidator] = None
207
208
-
209
self.search_space_updates = search_space_updates
210
if search_space_updates is not None:
211
if not isinstance(self.search_space_updates,
212
HyperparameterSearchSpaceUpdates):
213
raise ValueError("Expected search space updates to be of instance"
214
" HyperparameterSearchSpaceUpdates got {}".format(type(self.search_space_updates)))
215
216
- self.InputValidator: Optional[BaseInputValidator] = None
217
218
@abstractmethod
219
def build_pipeline(self, dataset_properties: Dict[str, Any]) -> BasePipeline:
220
"""
0 commit comments