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 7b398d5 commit bf7c716Copy full SHA for bf7c716
napari_cellseg3d/code_plugins/plugin_model_training.py
@@ -879,7 +879,11 @@ def _set_worker_config(self) -> config.TrainingWorkerConfig:
879
validation_percent = self.validation_percent_choice.slider_value / 100
880
881
results_path_folder = Path(
882
- self.results_path + f"/{model_config.name}_{utils.get_date_time()}"
+ self.results_path
883
+ + f"/{model_config.name}_"
884
+ + f"{self.loss_choice.currentText()}_"
885
+ + f"{self.epoch_choice.value()}e_"
886
+ + f"{utils.get_date_time()}"
887
)
888
Path(results_path_folder).mkdir(
889
parents=True, exist_ok=False
0 commit comments