We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eed4ea commit 79724ddCopy full SHA for 79724dd
napari_cellseg3d/code_models/worker_training.py
@@ -421,7 +421,11 @@ def log_parameters(self):
421
##############
422
self.log("-- Data --")
423
self.log("Training data :")
424
- [self.log(f"\n{v}") for k, v in self.config.train_data_dict.items()]
+ [
425
+ self.log(f"\n{v}")
426
+ for d in self.config.train_data_dict
427
+ for k, v in d.items()
428
+ ]
429
if self.config.eval_volume_dict is not None:
430
self.log("Validation data :")
431
[
0 commit comments