File size: 7,768 Bytes
0b32ad6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
import os
import argparse
from pathlib import Path
from shutil import copyfile, copytree
parser = argparse.ArgumentParser()
parser.add_argument("--pr")
parser.add_argument("--sid")
parser.add_argument("--ks")
parser.add_argument("--ic")
parser.add_argument("--er_fold1")
parser.add_argument("--er_fold2")
parser.add_argument("--er_fold3")
parser.add_argument("--er_fold4")
parser.add_argument("--er_fold5")
parser.add_argument("--asr_no_lm")
parser.add_argument("--asr_with_lm")
parser.add_argument("--qbe")
parser.add_argument("--sf")
parser.add_argument("--sv")
parser.add_argument("--sd")
parser.add_argument("--se")
parser.add_argument("--st")
parser.add_argument("--ss")
parser.add_argument("--output_dir", required=True)
args = parser.parse_args()
output_dir = Path(args.output_dir)
predict_dir = output_dir / "predict"
output_dir.mkdir(exist_ok=True)
predict_dir.mkdir(exist_ok=True)
processed_tasks = []
if args.pr is not None:
task_name = "pr_public"
processed_tasks.append(task_name)
expdir = Path(args.pr)
src = expdir / "test-hyp.ark"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.ark"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.sid is not None:
task_name = "sid_public"
processed_tasks.append(task_name)
expdir = Path(args.sid)
src = expdir / "test_predict.txt"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.txt"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.ks is not None:
task_name = "ks_public"
processed_tasks.append(task_name)
expdir = Path(args.ks)
src = expdir / "test_predict.txt"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.txt"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.ic is not None:
task_name = "ic_public"
processed_tasks.append(task_name)
expdir = Path(args.ic)
src = expdir / "test_predict.csv"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.csv"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
er_processed = []
for foldid in range(1, 6):
expdir = getattr(args, f"er_fold{foldid}")
if expdir is not None:
task_name = f"er_fold{foldid}_public"
processed_tasks.append(task_name)
er_processed.append(task_name)
expdir = Path(expdir)
src = expdir / f"test_fold{foldid}_predict.txt"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.txt"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if len(er_processed) > 0 and len(er_processed) < 5:
print(f"[Warning] - {er_processed} are included but only in {len(er_processed)} folds. er_public will NOT be scored. er_public will be scored only when all the 5 folds are submitted.")
if args.asr_no_lm is not None:
task_name = "asr_public"
processed_tasks.append(task_name)
expdir = Path(args.asr_no_lm)
src = expdir / f"test-clean-noLM-hyp.ark"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.ark"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.asr_with_lm is not None:
task_name = "asr_lm_public"
processed_tasks.append(task_name)
expdir = Path(args.asr_with_lm)
src = expdir / f"test-clean-LM-hyp.ark"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.ark"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.qbe is not None:
task_name = "qbe_public"
processed_tasks.append(task_name)
expdir = Path(args.qbe)
src = expdir / f"benchmark.stdlist.xml"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "benchmark.stdlist.xml"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.sf is not None:
task_name = "sf_public"
processed_tasks.append(task_name)
expdir = Path(args.sf)
src = expdir / "test-hyp.ark"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.ark"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.sv is not None:
task_name = "sv_public"
processed_tasks.append(task_name)
expdir = Path(args.sv)
src = (expdir / "test_predict.txt").resolve()
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.txt"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.sd is not None:
task_name = "sd_public"
processed_tasks.append(task_name)
expdir = Path(args.sd)
src_dir = expdir / "scoring" / "predictions"
assert src_dir.is_dir(), f"{src_dir} not found"
tgt_dir = predict_dir / task_name
tgt_predict_dir = tgt_dir / "scoring" / "predictions"
copytree(src_dir, tgt_predict_dir, dirs_exist_ok=True)
upstream_rate = expdir / "frame_shift"
if upstream_rate.is_file():
copyfile(upstream_rate, tgt_dir / "frame_shift")
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.se is not None:
task_name = "se_public"
processed_tasks.append(task_name)
expdir = Path(args.se)
src = (expdir / "test_metrics.txt").resolve()
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "metrics.txt"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.ss is not None:
task_name = "ss_public"
processed_tasks.append(task_name)
expdir = Path(args.ss)
src = (expdir / "test_metrics.txt").resolve()
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "metrics.txt"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
if args.st is not None:
task_name = "st_public"
processed_tasks.append(task_name)
expdir = Path(args.st)
src = expdir / "output-st-test.tsv"
assert src.is_file(), f"{src} not found"
tgt_dir = predict_dir / task_name
tgt_dir.mkdir(exist_ok=True)
tgt = tgt_dir / "predict.tsv"
copyfile(src, tgt)
print(f"{task_name} is included in the submission and will be scored after submitted.")
print("Zipping predictions for submission...")
os.chdir(output_dir)
os.system(f"zip -q -r predict.zip predict/")
print(f"Process {len(processed_tasks)} tasks: {' '.join(processed_tasks)}") |