Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion autoPyTorch/api/tabular_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ def get_dataset(self,
validator=InputValidator,
resampling_strategy=resampling_strategy,
resampling_strategy_args=resampling_strategy_args,
dataset_name=dataset_name
dataset_name=dataset_name,
seed=self.seed
)
if not return_only:
self.InputValidator = InputValidator
Expand Down
3 changes: 2 additions & 1 deletion autoPyTorch/api/tabular_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ def get_dataset(self,
validator=InputValidator,
resampling_strategy=resampling_strategy,
resampling_strategy_args=resampling_strategy_args,
dataset_name=dataset_name
dataset_name=dataset_name,
seed=self.seed
)
if not return_only:
self.InputValidator = InputValidator
Expand Down