#! /usr/bin/python3 -sP
import sys
from nnunetv2.evaluation.find_best_configuration import accumulate_crossval_results_entry_point
if __name__ == '__main__':
    sys.argv[0] = sys.argv[0].removesuffix('.exe')
    sys.exit(accumulate_crossval_results_entry_point())
