Skip to content

Commit

Permalink
Skip hparams with non-basic types
Browse files Browse the repository at this point in the history
  • Loading branch information
allegroai committed Nov 13, 2022
1 parent f6238b8 commit 1633af2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions clearml/backend_interface/task/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -1096,6 +1096,7 @@ def stringify(value):
", ".join("%s[%s]" % p for p in not_allowed.items()),
)
)
new_parameters = {k: v for k, v in new_parameters.items() if k not in not_allowed}

use_hyperparams = Session.check_min_api_version('2.9')

Expand Down

0 comments on commit 1633af2

Please sign in to comment.