Hi everyone, this is my first time working on a problem like this, and I’m still trying to understand the best way to approach it.
After doing some research, I identified that this seems to be a regression problem, but I’m not sure which modeling approach is most appropriate in this case.
Could someone give me some guidance on how to get started or what kind of models/strategies usually work well for this type of problem? Any tips or references would be really appreciated.
Thanks in advance!
Hi man , here is a link to a writeup + code you could look at to understand how to go about this image regression challenge :https://zindi.africa/competitions/lacuna-solar-survey-challenge/discussions/25675 .
Here's a quick summary of a transfer learning approach you could use: Use a pretrained model from the timm library as your backbone, then add regression heads.
Models to try EfficientNet: tf_efficientnet_b5 or efficientnet_b3 — good balance of speed and accuracy Swin Transformer: swin_base_patch4_window7_224 — good for dense counting ResNet: resnet50 simple and reliable
Architecture pattern : Load a pretrained backbone (freeze initially or fine-tune)
-Add regression heads
-Train end-to-end
@Abdourahamane_ Thanks Big Man! I was suffering at a point. Let me try it out😅
Hey @Abdourahamane_ ,
Thank you very much for taking the time to help me by recommending content to learn how to work with the competition. Your guidance was really helpful, and I truly appreciate your support.