Skip to content

Commit

Permalink
fix(AutoML): fixed multiple architecture passing for advanced training
Browse files Browse the repository at this point in the history
  • Loading branch information
muellerdo committed Jun 30, 2022
1 parent c31355d commit f4b165c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aucmedi/automl/parser_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ def parse_cli(args):
if config["hub"] == "training":
# Handle 3D shape - from str to tuple
config["shape_3D"] = tuple(map(int, config["shape_3D"].split("x")))
# Handle architecture list
if "," in config["architecture"]:
config["architecture"] = config["architecture"].split(",")
else:
# Handle input path
config["input"] = config["path_input"]
Expand Down

0 comments on commit f4b165c

Please sign in to comment.