CoolFace
Modelpublic

polymathic-ai/FNO-MHD_64

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes29downloads
Model Card

Benchmarking Models on the Well

The Well is a 15TB dataset collection of physics simulations. This model is part of the models that have been benchmarked on the Well.

The models have been trained for a fixed time of 12 hours or up to 500 epochs, whichever happens first. The training was performed on a NVIDIA H100 96GB GPU. In the time dimension, the context length was set to 4. The batch size was set to maximize the memory usage. We experiment with 5 different learning rates for each model on each dataset. We use the model performing best on the validation set to report test set results.

The reported results are here to provide a simple baseline. They should not be considered as state-of-the-art. We hope that the community will build upon these results to develop better architectures for PDE surrogate modeling.

Fourier Neural Operator

Implementation of the Fourier Neural Operator provided by `neuraloperator v0.3.0`.

Model Details

For benchmarking on the Well, we used the following parameters.

ParametersValues
Modes16
Blocks4
Hidden Size128

Trained Model Versions

Below is the list of checkpoints available for the training of FNO on different datasets of the Well.

DatasetBest Learning RateEpochsVRMSE
acoustic_scattering_maze1E-3270.5033
active_matter5E-32390.3157
convective_envelope_rsg1E-4140.0224
gray_scott_reaction_diffusion1E-3460.2044
helmholtz_staircase5E-41320.00160
MHD_645E-31700.3352
planetswe5E-4490.0855
post_neutron_star_merger5E-41040.4144
rayleigh_benard1E-4320.6049
rayleigh_taylor_instability5E-31770.4013
shear_flow1E-3240.4450
supernova_explosion_641E-4400.3804
turbulence_gravity_cooling1E-4130.2381
turbulent_radiative_layer_2D5E-35000.4906
viscoelastic_instability5E-32050.7195

Loading the model from Hugging Face

To load the FNO model trained on the MHD_64 of the Well, use the following commands.

python
from the_well.benchmark.models import FNO

model = FNO.from_pretrained("polymathic-ai/FNO-MHD_64")