Closed Escape142 closed 6 months ago
We only perform bilinear interpolation before feeding it to the DL model. This is a common practice. The idea is that the DL will learn to fix the error of bilinear interpolation
Thank you for your reply!
Can you clarify why did you use exactly 16 shards here?
so each shard is a collection of data we load to memory at once. If you increase the shard size you will have to read the data from disk less but each read will take longer, and vice versa. We found 16 to provide a good balance
Could you please specify the sources for the land-sea mask and orography constant fields necessary to replicate the results presented in the paper?
Thank you!
According to the paper, ClimaX was supposed to be incorporated into ClimateLearn. However, it appears to be missing at the moment. Is my understanding correct?
It's not been pushed to the main branch. You can checkout the tung_exps
branch which has the climax implementation
Hello,
I've noticed the use of bilinear interpolation for downscaling climate data in
loaders.py
here. Given the complexity of climate data, I'm curious about this choice.Could you share the rationale behind using bilinear interpolation?
Thank you in advance.