def action_optimize_dataset(argc, argv): args = parse_args(argv) path = os.path.abspath(args.path) if not os.path.exists(path): log.error("dataset file %s does not exist", path) quit() Dataset.optimize(path, args.reuse, args.output)
def action_optimize_dataset(args): path = os.path.abspath(args.project_path) if not os.path.exists(path): log.error("dataset file %s does not exist", path) quit() Dataset.optimize(path, args.reuse, args.output)