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 a2e35bc commit 8e557acCopy full SHA for 8e557ac
viscy/cli.py
@@ -36,6 +36,13 @@ def add_arguments_to_parser(self, parser) -> None:
36
}
37
)
38
39
+ def _parse_ckpt_path(self) -> None:
40
+ try:
41
+ return super()._parse_ckpt_path()
42
+ except SystemExit:
43
+ # FIXME: https://github.com/Lightning-AI/pytorch-lightning/issues/21255
44
+ return None
45
+
46
47
def _setup_environment() -> None:
48
"""Set log level and TF32 precision."""
0 commit comments