We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3be90a commit 0db92fcCopy full SHA for 0db92fc
synaptic_reconstruction/tools/cli.py
@@ -6,6 +6,7 @@
6
7
8
# TODO: handle kwargs
9
+# TODO: add custom model path
10
def segmentation_cli():
11
parser = argparse.ArgumentParser(description="Run segmentation.")
12
parser.add_argument(
@@ -16,6 +17,7 @@ def segmentation_cli():
16
17
"--output_path", "-o", required=True,
18
help="The filepath to directory where the segmentations will be saved."
19
)
20
+ # TODO: list the availabel models here by parsing the keys of the model registry
21
22
"--model", "-m", required=True, help="The model type."
23
0 commit comments