Posts | About
Day Planner
Major ramp ups
tf-reef Comp plannings:
Base Plan:
My planning is to to development in 960x960 images and do all the model building
, hyper-parameter tuning
, folds
, augmentation
, TTA
, Ensemble
, tracking
, sahi
.
Result visualization:
There are chances that the model is mostly predicting FP so to check that use this. Reduce FP. Find best confedence value for the model by plotting the results.
Model With GPU:
Do 3 folds on the best model with on 4k or 9k images and see the LB. this will be considered in the submission with high LB.
Model List:
The focus should be to pick one model and do the hyper-param tuning to the end.
In the model head, ROI, ROI allignment, Anchore box, FPN, NMS threshold small.
- Do classification and then do object detection approach. Like in the COVID x-ray comp by nischay dhankar.
Move to colab
✅
- Find a way to use unlabled data also [training might be time consuming]
Augmentation:
- Mosaic data augmentation
- copy paste
- cutmix, mixup
- light scattering,
- cutout inside bbox
- Optical Distortion
Few links on Augmentation:
- https://neptune.ai/blog/data-augmentation-in-python
Mixed precision:
making float32 to float16 to reduce training time, but at the same time it does not redure model performance
Inference on high image size:
train on lower image size, inference on higher image. [helps if the img has small objects associated with it]
Change the classifier/Use another model for feature extraction:
Use different model for feature extraction and add them all in one place and feed them into FasterRCNN.
Orders from Group:
tf-reef findings