Skip to content

Commit

Permalink
fix: correct missing argument error
Browse files Browse the repository at this point in the history
  • Loading branch information
jimthompson5802 committed Feb 5, 2020
1 parent 2acbfa4 commit a67a103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ludwig/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1003,8 +1003,8 @@ def test(


def kfold_cross_validate(
self,
k_fold,
model_definition=None,
data_csv=None,
output_directory='results',
random_seed=default_random_seed,
Expand Down Expand Up @@ -1032,7 +1032,7 @@ def kfold_cross_validate(
kfold_split_indices) = kfold_cross_validate(
k_fold,
data_csv=data_csv,
model_definition=self.model_definition,
model_definition=model_definition,
output_directory=output_directory,
random_seed=random_seed,
skip_save_k_fold_split_indices=skip_save_k_fold_split_indices
Expand Down

0 comments on commit a67a103

Please sign in to comment.