-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Context
In order to improve the results, we want to find the best preprocessing for the magnitude and the phase. A good preprocessing should facilitate the segmentation for the model from the very beginning. To evaluate the best preprocessing, we conduct experiments based on the default implementation over 25 epochs.
Preprocessing techniques
In the default implementation, there is no heavy preprocessing meant to improve the quality of the data given to the model. Here, for now, we investigate the impact of both the use CLAHE on the magnitude channel and/or the use of a linear contrast enhancement on the phase. We evaluate the impact on the validation metrics. Naturally, the preprocessing is applied on both train and val data and the training is deterministic.
Note for later : for now we implement the preprocessing as an additional step done after augmentation. For a better consistency, it could/should be integrated in the get_training_transforms
and the get_val_transforms
.