Skip to content

Commit

Permalink
splitter in init trainer
Browse files Browse the repository at this point in the history
  • Loading branch information
camillebrianceau committed Oct 14, 2024
1 parent 825f5fd commit 6f6933a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion clinicadl/predictor/predictor.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ def __init__(self, _config: Union[PredictConfig, InterpretConfig]) -> None:

self.maps_manager = MapsManager(_config.maps_manager.maps_dir)
self._config.adapt_with_maps_manager_info(self.maps_manager)
print(self._config.data.model_dump())
print(
self._config.data.model_dump(
exclude=set(["preprocessing_dict", "mode", "caps_dict"])
)
)
tmp = self._config.data.model_dump(
exclude=set(["preprocessing_dict", "mode", "caps_dict"])
)
Expand Down

0 comments on commit 6f6933a

Please sign in to comment.