SETI-Breakthrough-Listen—E.T.-Signal-Search
Problem Statement
In this competition we are looking for technosignature signals in cadence snippets taken from the Green Bank Telescope (ie. accurately classifing anomalous signals). There are 6 channels in the images of shape (6, 273, 256) where 273 is the time axis and 256 is the frequency axis, representing the 2D spectrogram.
Solution
At the beggining of the competition tried different approaches (use all channels, only 0,2,4, with vstack and without it). So, the best option was to use only 0,2,4 channels with vstack. Also had a lot of experiments with img size and found that bigger resolution can improve results (512x512 / 672x672 / 896x896).
Augmentation:
- HorizontalFlip, VerticalFlip
- ShiflScaleRotate
- RandomResizedCrop (scale 0.9)
- IAAAdditiveGaussianNoise (scale 0.15)
- MixUp
- Shuffle the [0,2,4] channel as augmentation
Models:
- efficientnet_b0
- efficientnet_b5
- efficientnetv2m