fix: Runtime errors

This commit is contained in:
Tibo De Peuter 2025-12-08 11:14:36 +01:00
parent abbf749029
commit 28ae8191ad
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
4 changed files with 20 additions and 12 deletions

View file

@ -22,6 +22,7 @@ def main():
data_root = args.data_root,
n_trials = 3 if args.debug else None,
size = 2**10 if args.debug else None,
method = args.method,
model_name=args.model,
model_path = args.model_load_path,
model_out = args.model_save_path
@ -32,6 +33,8 @@ def main():
case _:
raise NotImplementedError(f"Mode {args.mode} is not implemented yet")
print("Done")
if __name__ == "__main__":