Response on the regularization
Thank you for your answer.
We have conducted additional experiments on the auto-encoder, specifically exploring your suggestion of not using any L2 regularization on the latent space for both Navier-Stokes 1e-4 and Navier-Stokes 1e-5 datasets. The results, expressed in relative L2 reconstruction errors on the test set (isolating the behavior of the encoder-decoder without involving dynamics), are shown in the following table:
| | Navier Stokes 1e-4 | Navier Stokes 1e-5 |
|--------------------------|--------------------|--------------------|
| **With L2 Regularization** | 7.30e-3 | 6.12e-2 |
| **Without Regularization** | 3.49e-2 | 7.66e-2 |
We observed that without L2 regularization, the training process led to a much higher variance in the latent space that with the regularization (with standard deviations exceeding 100). This increased variance is likely a key factor contributing to the higher reconstruction errors observed on the test set, as well as the noticeable slowdown in the training process.
Previous works have successfully used a CNN VAE to obtain latent reduced representations in the context e.g. of precipitation nowcasting [1]. However, you are correct in suggesting that other forms of regularization might be more suitable for capturing the complexity of turbulence dynamics. Still, the L2 regularization serves two key roles in our approach:
* **Facilitating the training of the encoder-decoder** by keeping the latent codes within a manageable range, which helps in maintaining the stability and efficiency of the learning process.
* **Facilitating the training of the transformer**, which benefits from a more controlled and predictable latent space.
While L2 regularization might not be the optimal choice for all cases, it plays a crucial role in ensuring that the model remains trainable and that the latent space is not excessively scattered.
We appreciate your suggestion and agree that exploring alternative regularization techniques could yield further improvements, especially in the context of capturing heavy-tailed distributions in complex datasets.
[1] Gao et al. PreDiff: Precipitation Nowcasting with Latent Diffusion Models. Neurips 2023.