From 8fcc04e7ee8cf022977aa68b59b7c5e71ea165e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20=C5=A0=C3=ADr?= Date: Fri, 1 Nov 2024 18:23:10 +0100 Subject: [PATCH] fixing wrong argument assignment in wandb_predict.py --- examples/wandb_predict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/wandb_predict.py b/examples/wandb_predict.py index e2a435e6..e0527f37 100644 --- a/examples/wandb_predict.py +++ b/examples/wandb_predict.py @@ -77,7 +77,7 @@ def main(params): if model.model_name == "rkt": testauc, testacc = evaluate(model, test_loader, model_name, rel, save_test_path) else: - testauc, testacc = evaluate(model, test_loader, model_name, save_test_path) + testauc, testacc = evaluate(model, test_loader, model_name, None, save_test_path) print(f"testauc: {testauc}, testacc: {testacc}") window_testauc, window_testacc = -1, -1