Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 1, 2023
1 parent b5ceca6 commit 7612c6d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions bundle/pythonic_usage_guidance/pythonic_bundle_access.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
}
],
"source": [
"config_file = Path(root_dir)/ \"spleen_ct_segmentation\" / \"configs\" / \"train.json\"\n",
"config_file = Path(root_dir) / \"spleen_ct_segmentation\" / \"configs\" / \"train.json\"\n",
"\n",
"train_workflow = create_workflow(config_file=config_file, workflow_type=\"train\")"
]
Expand Down Expand Up @@ -300,12 +300,9 @@
}
],
"source": [
"#1 override them when you create the workflow\n",
"# 1 override them when you create the workflow\n",
"dataset_dir = Path(root_dir) / \"Task09_Spleen\"\n",
"override = {\n",
" \"max_epochs\": 3,\n",
" \"dataset_dir\": dataset_dir\n",
" }\n",
"override = {\"max_epochs\": 3, \"dataset_dir\": dataset_dir}\n",
"train_workflow = create_workflow(config_file=config_file, workflow_type=\"train\", **override)"
]
},
Expand Down

0 comments on commit 7612c6d

Please sign in to comment.