Prereqs deep models (#38125)

* deep pre-req

* modeld changes

* fix parsing

* comment

* fix reporter
This commit is contained in:
Harald Schäfer
2026-06-01 18:43:47 -07:00
committed by GitHub
parent 0f17a98793
commit 249cafe897
8 changed files with 68 additions and 47 deletions
+7 -2
View File
@@ -34,6 +34,11 @@ if __name__ == "__main__":
for f in glob.glob(BASEDIR + MODEL_PATH + "/*.onnx"):
fn = os.path.basename(f)
master = get_checkpoint(MASTER_PATH + MODEL_PATH + fn)
master_path = MASTER_PATH + MODEL_PATH + fn
if os.path.exists(master_path):
master = get_checkpoint(master_path)
master_col = f"[{master}](https://reporter.comma.life/experiment/{master})"
else:
master_col = "N/A (new model)"
pr = get_checkpoint(BASEDIR + MODEL_PATH + fn)
print("|", fn, "|", f"[{master}](https://reporterv2.comma.life/{master})", "|", f"[{pr}](https://reporterv2.comma.life/{pr})", "|")
print("|", fn, "|", master_col, "|", f"[{pr}](https://reporter.comma.life/experiment/{pr})", "|")