From 4cc1f53a9576fc59bfd248803b0fd32b0dc6a3e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20K=C3=B6hler?= <27728103+Ceyron@users.noreply.github.com> Date: Tue, 5 Nov 2024 12:50:31 +0100 Subject: [PATCH] Add paper (#6) * Add documentation * Change heading structure --- README.md | 34 +++++++++++++++++++++++++--------- docs/index.md | 21 +++++++++++++++++++++ 2 files changed, 46 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d15f054..dc53824 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ Background • Features • Boundary Conditions • - - Acknowledgements + Related • + Citation
@@ -157,9 +157,7 @@ Dirichlet boundaries fully eliminate degrees of freedom on the boundary. Periodic boundaries only keep one end of the domain as a degree of freedom (This package follows the convention that the left boundary is the degree of freedom). Neumann boundaries keep both ends as degrees of freedom. -## Acknowledgements - -### Related Work +## Related Work Similar packages that provide a collection of emulator architectures are [PDEBench](https://github.com/pdebench/PDEBench) and @@ -168,15 +166,33 @@ Neural Networks and Neural Operators, there are also [DeepXDE](https://github.com/lululxvi/deepxde) and [NVIDIA Modulus](https://developer.nvidia.com/modulus). -### Citation +## Citation + +This package was developed as part of the [APEBench paper +(arxiv.org/abs/2411.00180)](https://arxiv.org/abs/2411.00180) (accepted at +Neurips 2024). If you find it useful for your research, please consider citing +it: + +```bibtex +@article{koehler2024apebench, + title={{APEBench}: A Benchmark for Autoregressive Neural Emulators of {PDE}s}, + author={Felix Koehler and Simon Niedermayr and R{\"}udiger Westermann and Nils Thuerey}, + journal={Advances in Neural Information Processing Systems (NeurIPS)}, + volume={38}, + year={2024} +} +``` + +(Feel free to also give the project a star on GitHub if you like it.) -This package was developed as part of the `APEBench paper` (accepted at Neurips 2024), we will soon add the citation here. +[Here](https://github.com/tum-pbs/apebench) you can find the APEBench benchmark +suite. -### Funding +## Funding The main author (Felix Koehler) is a PhD student in the group of [Prof. Thuerey at TUM](https://ge.in.tum.de/) and his research is funded by the [Munich Center for Machine Learning](https://mcml.ai/). -### License +## License MIT, see [here](LICENSE.txt) diff --git a/docs/index.md b/docs/index.md index 1b3c533..cfd83a1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -80,6 +80,27 @@ for epoch in tqdm(range(100)): * Composability * Tools to count parameters and assess receptive fields +## Citation + +This package was developed as part of the [APEBench paper +(arxiv.org/abs/2411.00180)](https://arxiv.org/abs/2411.00180) (accepted at +Neurips 2024). If you find it useful for your research, please consider citing +it: + +```bibtex +@article{koehler2024apebench, + title={{APEBench}: A Benchmark for Autoregressive Neural Emulators of {PDE}s}, + author={Felix Koehler and Simon Niedermayr and R{\"}udiger Westermann and Nils Thuerey}, + journal={Advances in Neural Information Processing Systems (NeurIPS)}, + volume={38}, + year={2024} +} +``` + +(Feel free to also give the project a star on GitHub if you like it.) + +[Here](https://github.com/tum-pbs/apebench) you can find the APEBench benchmark +suite. ## License