vcnef
Official PyTorch implementation of the Vectorized Conditional Neural Field.
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
✓DOI references
Found 1 DOI reference(s) in README -
✓Academic publication links
Links to: arxiv.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (10.5%) to scientific vocabulary
Keywords
Repository
Official PyTorch implementation of the Vectorized Conditional Neural Field.
Basic Info
Statistics
- Stars: 15
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
Vectorized Conditional Neural Field (VCNeF)
Jan Hagnberger, Marimuthu Kalimuthu, Daniel Musekamp, Mathias Niepert
This repository contains the official PyTorch implementation of the VCNeF model from the ICML'24 paper,
"Vectorized Conditional Neural Fields: A Framework for Solving Time-dependent Parametric Partial Differential Equations".
Requirements
The VCNeF model requires and is tested with the following packages. - PyTorch in version 2.2.0 - NumPy in version 1.26.4 - Einops in version 0.7.0
Please also see the requirements.txt file which contains all packages to run the provided examples.
Usage
The following example shows how to use the VCNeF model.
```python import torch from vcnef.vcnef1d import VCNeFModel as VCNeF1DModel from vcnef.vcnef2d import VCNeFModel as VCNeF2DModel from vcnef.vcnef_3d import VCNeFModel as VCNeF3DModel
model = VCNeF2DModel(numchannels=4, conditiononpdeparam=True, pdeparamdim=2, dmodel=256, nheads=8, ntransformerblocks=1, nmodulationblocks=6)
Random data with shape b, sx, sy, c
x = torch.rand(4, 64, 64, 4) grid = torch.rand(4, 64, 64, 2) pde_param = torch.rand(4, 2) t = torch.arange(1, 21).repeat(4, 1) / 20
yhat = model(x, grid, pdeparam, t) ```
Files
Below is a listing of the directory structure of VCNeF.
examples.py: Contains lightweight examples of how to use VCNeF. \
examples_pde_bench.py: Contains examples of how to use VCNeF with PDEBench data and the PDEBench training loop. \
📂 vcnef: Contains the code for the VCNeF model. \
📂 utils: Contains utils for the PDEBench example.
Dataset for PDEBench Example
To use the PDEBench example examples_pde_bench.py, you have to download the PDEBench datasets. An overview of the avaiable data and how to download it can be found in the PDEBench repository. To use the downloaded datasets in the example, you have to adapt the path in base_path and the file name(s) in file_names.
VCNeF Architecture
The following illustation shows the architecture of the VCNeF model for solving 2D time-dependent PDEs (e.g., Navier-Stokes equations).
Acknowledgements
The code of VCNeF is based on the code of Linear Transformers and PDEBench. We would like to thank the authors of Linear Transformers and PDEBench for their work, which made our method possible.
License
MIT licensed, except where otherwise stated. Please see LICENSE file.
Citation
If you find our project useful, please consider citing it.
@InProceedings{vcnef-hagnberger:2024,
title = {{V}ectorized {C}onditional {Ne}ural {F}ields: A Framework for Solving Time-dependent Parametric Partial Differential Equations},
author = {Hagnberger, Jan and Kalimuthu, Marimuthu and Musekamp, Daniel and Niepert, Mathias},
booktitle = {Proceedings of the 41st International Conference on Machine Learning},
pages = {17189--17223},
year = {2024},
editor = {Salakhutdinov, Ruslan and Kolter, Zico and Heller, Katherine and Weller, Adrian and Oliver, Nuria and Scarlett, Jonathan and Berkenkamp, Felix},
volume = {235},
series = {Proceedings of Machine Learning Research},
month = {21--27 Jul},
publisher = {PMLR},
pdf = {https://raw.githubusercontent.com/mlresearch/v235/main/assets/hagnberger24a/hagnberger24a.pdf},
url = {https://proceedings.mlr.press/v235/hagnberger24a.html},
abstract = {Transformer models are increasingly used for solving Partial Differential Equations (PDEs). Several adaptations have been proposed, all of which suffer from the typical problems of Transformers, such as quadratic memory and time complexity. Furthermore, all prevalent architectures for PDE solving lack at least one of several desirable properties of an ideal surrogate model, such as (i) generalization to PDE parameters not seen during training, (ii) spatial and temporal zero-shot super-resolution, (iii) continuous temporal extrapolation, (iv) support for 1D, 2D, and 3D PDEs, and (v) efficient inference for longer temporal rollouts. To address these limitations, we propose <em>Vectorized Conditional Neural Fields</em> (VCNeFs), which represent the solution of time-dependent PDEs as neural fields. Contrary to prior methods, however, VCNeFs compute, for a set of multiple spatio-temporal query points, their solutions in parallel and model their dependencies through attention mechanisms. Moreover, VCNeF can condition the neural field on both the initial conditions and the parameters of the PDEs. An extensive set of experiments demonstrates that VCNeFs are competitive with and often outperform existing ML-based surrogate models.}
}
Owner
- Name: Jan Hagnberger
- Login: jhagnberger
- Kind: user
- Location: Stuttgart, Germany
- Company: University of Stuttgart
- Repositories: 1
- Profile: https://github.com/jhagnberger
Machine Learning for Science
Citation (CITATION.bib)
@InProceedings{vcnef-hagnberger:2024,
title = {{V}ectorized {C}onditional {Ne}ural {F}ields: A Framework for Solving Time-dependent Parametric Partial Differential Equations},
author = {Hagnberger, Jan and Kalimuthu, Marimuthu and Musekamp, Daniel and Niepert, Mathias},
booktitle = {Proceedings of the 41st International Conference on Machine Learning},
pages = {17189--17223},
year = {2024},
editor = {Salakhutdinov, Ruslan and Kolter, Zico and Heller, Katherine and Weller, Adrian and Oliver, Nuria and Scarlett, Jonathan and Berkenkamp, Felix},
volume = {235},
series = {Proceedings of Machine Learning Research},
month = {21--27 Jul},
publisher = {PMLR},
pdf = {https://raw.githubusercontent.com/mlresearch/v235/main/assets/hagnberger24a/hagnberger24a.pdf},
url = {https://proceedings.mlr.press/v235/hagnberger24a.html},
abstract = {Transformer models are increasingly used for solving Partial Differential Equations (PDEs). Several adaptations have been proposed, all of which suffer from the typical problems of Transformers, such as quadratic memory and time complexity. Furthermore, all prevalent architectures for PDE solving lack at least one of several desirable properties of an ideal surrogate model, such as (i) generalization to PDE parameters not seen during training, (ii) spatial and temporal zero-shot super-resolution, (iii) continuous temporal extrapolation, (iv) support for 1D, 2D, and 3D PDEs, and (v) efficient inference for longer temporal rollouts. To address these limitations, we propose <em>Vectorized Conditional Neural Fields</em> (VCNeFs), which represent the solution of time-dependent PDEs as neural fields. Contrary to prior methods, however, VCNeFs compute, for a set of multiple spatio-temporal query points, their solutions in parallel and model their dependencies through attention mechanisms. Moreover, VCNeF can condition the neural field on both the initial conditions and the parameters of the PDEs. An extensive set of experiments demonstrates that VCNeFs are competitive with and often outperform existing ML-based surrogate models.}
}
GitHub Events
Total
- Watch event: 6
Last Year
- Watch event: 6