Skip to content

Commit

Permalink
Unpack hyperparameters properly.
Browse files Browse the repository at this point in the history
  • Loading branch information
brockf committed Apr 24, 2018
1 parent 4b37a39 commit b35b379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootcamp/bootcamp.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def train_test_validate(self):

# save the model instance and parameters
self.model_instances[model_key] = {
'object': model(*param_iter),
'object': model(**param_iter),
'parameters': param_iter
}

Expand Down

0 comments on commit b35b379

Please sign in to comment.