Safetensors
physics
LTMeyer commited on
Commit
dc95a03
·
verified ·
1 Parent(s): 7967441

Push model using huggingface_hub.

Browse files
Files changed (3) hide show
  1. README.md +63 -0
  2. config.json +14 -0
  3. model.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: polymathic-ai/acoustic_scattering_maze
3
+ tags:
4
+ - physics
5
+ ---
6
+
7
+ # Benchmarking Models on the Well
8
+
9
+ [The Well](https://github.com/PolymathicAI/the_well) is a 15TB dataset collection of physics simulations. This model is part of the models that have been benchmarked on the Well.
10
+
11
+
12
+ 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.
13
+ 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.
14
+ We use the model performing best on the validation set to report test set results.
15
+
16
+ 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.
17
+
18
+ # Tensorized Fourier Neural Operator
19
+
20
+ Implementation of the [Tensorized Fourier Neural Operator](https://arxiv.org/abs/2310.00120) provided by [`neuraloperator v0.3.0`](https://neuraloperator.github.io/dev/index.html).
21
+
22
+ ## Model Details
23
+
24
+ For benchmarking on the Well, we used the following parameters.
25
+
26
+ | Parameters | Values |
27
+ |------------|--------|
28
+ | Modes | 16 |
29
+ | Blocks | 4 |
30
+ | Hidden Size| 128 |
31
+
32
+ ## Trained Model Versions
33
+
34
+ Below is the list of checkpoints available for the training of TFNO on different datasets of the Well.
35
+
36
+ | Dataset | Learning Rate | Epoch | VRMSE |
37
+ |---------|----------------|-------|-------|
38
+ | [acoustic_scattering_maze](https://huggingface.co/polymathic-ai/TFNO-acoustic_scattering) | 1E-3 | 27 | 0.5034 |
39
+ | [active_matter](https://huggingface.co/polymathic-ai/TFNO-active_matter) | 1E-3 | 243 | 0.3342 |
40
+ | [convective_envelope_rsg](https://huggingface.co/polymathic-ai/TFNO-convective_envelope_rsg) | 1E-3 | 13 | 0.0195 |
41
+ | [gray_scott_reaction_diffusion](https://huggingface.co/polymathic-ai/TFNO-gray_scott_reaction_diffusion) | 5E-3 | 45 | 0.1784 |
42
+ | [helmholtz_staircase](https://huggingface.co/polymathic-ai/TFNO-helmholtz_staircase) | 5E-4 | 131 | 0.00031 |
43
+ | [MHD_64](https://huggingface.co/polymathic-ai/TFNO-MHD_64) | 1E-3 | 155 | 0.3347 |
44
+ | [planetswe](https://huggingface.co/polymathic-ai/TFNO-planetswe) | 5E-4 | 49 | 0.1061 |
45
+ | [post_neutron_star_merger](https://huggingface.co/polymathic-ai/TFNO-post_neutron_star_merger) | 5E-4 | 99 | 0.4064 |
46
+ | [rayleigh_benard](https://huggingface.co/polymathic-ai/TFNO-rayleigh_benard) | 1E-4 | 31 | 0.8568 |
47
+ | [rayleigh_taylor_instability](https://huggingface.co/polymathic-ai/TFNO-rayleigh_taylor_instability) | 1E-4 | 175 | 0.2251 |
48
+ | [shear_flow](https://huggingface.co/polymathic-ai/TFNO-shear_flow) | 1E-3 | 24 | 0.3626 |
49
+ | [supernova_explosion_64](https://huggingface.co/polymathic-ai/TFNO-supernova_explosion_64) | 1E-4 | 35 | 0.3645 |
50
+ | [turbulence_gravity_cooling](https://huggingface.co/polymathic-ai/TFNO-turbulence_gravity_cooling) | 5E-4 | 10 | 0.2789 |
51
+ | [turbulent_radiative_layer_2D](https://huggingface.co/polymathic-ai/TFNO-turbulent_radiative_layer_2D) | 1E-3 | 500 | 0.4938 |
52
+ | [viscoelastic_instability](https://huggingface.co/polymathic-ai/TFNO-viscoelastic_instability) | 5E-3 | 199 | 0.7021 |
53
+
54
+
55
+ ## Loading the model from Hugging Face
56
+
57
+ To load the TFNO model trained on the `acoustic_scattering_maze` of the Well, use the following commands.
58
+
59
+ ```python
60
+ from the_well.benchmark.models import TFNO
61
+
62
+ model = TFNO.from_pretrained("polymathic-ai/TFNO-acoustic_scattering_maze")
63
+ ```
config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dim_in": 14,
3
+ "dim_out": 3,
4
+ "gradient_checkpointing": false,
5
+ "hidden_channels": 128,
6
+ "modes1": 16,
7
+ "modes2": 16,
8
+ "modes3": 16,
9
+ "n_spatial_dims": 2,
10
+ "spatial_resolution": [
11
+ 256,
12
+ 256
13
+ ]
14
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48d187aaa1ba08707dc17fee65e24dd9690ebae26fe4a2c9d23b8b12399d7af5
3
+ size 77106860