We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42a0374 commit 12482dbCopy full SHA for 12482db
1 file changed
training/src/train.py
@@ -493,6 +493,17 @@ def main(
493
}
494
)
495
496
+ params = {
497
+ "n_bands": n_bands,
498
+ "tiles_size": tiles_size,
499
+ "augment_size": augment_size,
500
+ "module_name": module_name,
501
+ "normalization_mean": normalization_mean,
502
+ "normalization_std": normalization_std,
503
+ }
504
+
505
+ mlflow.log_dict(params, "params.json")
506
507
# 8- Test
508
trainer.test(dataloaders=[test_loader, test_loader], ckpt_path="best")
509
run_id = run.info.run_id
0 commit comments