This project implements a Deep Residual Learning approach to classify Strong Gravitational Lensing images into three categories based on their substructure. A 20-layer ResNet model was trained on a dataset of 30,000 images (split across training, validation, and test sets). The model was optimized using data augmentation, L2 regularization, and a learning rate scheduler that reduces LR when validation loss plateaus.
The final trained model achieved an impressive 89.6% accuracy on the test set, with high AUC scores across all three classes, demonstrating robust classification performance for gravitational lensing substructure analysis.
Metric | Value |
---|---|
Testset accuracy (best model) | 89.6% |
AUC (Class 0 = 'no') | 0.987 |
AUC (Class 1 = 'sphere') | 0.979 |
AUC (Class 2 = 'vort') | 0.968 |
The custom ResNet architecture follows the implementation detailed in the seminal ResNet paper, adapted specifically for gravitational lensing classification. Key features include: