#!./python3.6/bin/pythonimportargparsefrompyrougeimportRouge155defget_args():parser=argparse.ArgumentParser()parser.add_argument(help="Path of the directory containing ROUGE-1.5.5.pl.",type=str,action="store",dest="home_dir")returnparser.parse_args()defmain():args=get_args()Rouge155(args.home_dir)if__name__=="__main__":main()