MagnusOstertag / AI4ArcticSeaIceChallenge

0 stars 0 forks source link

Reproduce and improve on the U-Net as seen in the AI4SeaIce paper #1

Open MagnusOstertag opened 1 year ago

MagnusOstertag commented 1 year ago

AI4SeaIce: Toward Solving Ambiguous SAR Textures in Convolutional Neural Networks for Automatic Sea Ice Concentration Charting the code for the model

Do we see similar issues as reported? What ideas do we have to mitigate them?

MagnusOstertag commented 1 year ago

They have provided the code of their model with small adaptations in the challenge repo. We only have to use the deeper and smaller layers as they described in their paper:

Used 'filters' parameters:
   'filters': [16, 32, 32]  # 3-level
   'filters': [16, 32, 32, 32, 32]  # 5-level
   'filters': [16, 32, 32, 32, 32, 32]   # 6-level
   'filters': [16, 32, 32, 32, 32, 32, 32]  # 7-level
   'filters': [16, 32, 32, 32, 32, 32, 32, 32]   # 8-level

The 8-level model performed best. For those and the other parameters used see here.

In the outlook of the paper they wrote:

Other ideas from the paper: