Commit 41ef492a authored by mibaumgartner's avatar mibaumgartner
Browse files

add no check option to preprocessing

parent 2e2bd60b
......@@ -425,13 +425,19 @@ def main():
help="Run a full check of the data.",
action='store_true',
)
parser.add_argument('--no_check',
help="Skip basic check.",
action='store_true',
)
args = parser.parse_args()
tasks = args.tasks
ov = args.overwrites
full_check = args.full_check
no_check = args.no_check
initialize_config_module(config_module="nndet.conf")
# perform preprocessing checks first
if not no_check:
for task in tasks:
_ov = copy.deepcopy(ov) if ov is not None else []
cfg = compose(task, "config.yaml", overrides=_ov)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment