Interpolating Neural Networks
Project description
Interpolating Neural Network
This is the github repo for the paper "Interpolating neural network (INN): A novel unification of machine learning and interpolation theory".
INN is a lightweight yet precise network architecture that can replace MLPs for data training, partial differential equation (PDE) solving, and parameter calibration. The key features of INNs are:
- Less trainable parameters than MLP without sacrificing accuracy
- Faster and proven convergent behavior
- Fully differntiable and GPU-optimized
Installation
Clone the repository:
git clone https://github.com/hachanook/pyinn.git
cd pyinn
Create a conda environment:
conda clean --all # [optional] to clear cache files in the base conda environment
conda env create -f environment.yaml
or
conda install -n base -c conda-forge mamba # [optional] install mamba in the base conda environment
mamba env create -f environment.yaml # this makes installation faster
conda activate pyinn-env
Install JAX
- See jax installation instructions. Depending on your hardware, you may install the CPU or GPU version of JAX. Both will work, while GPU version usually gives better performance.
- For CPU only (Linux/macOS/Windows), one can simply install JAX using:
pip install -U jax
- For GPU (NVIDIA, CUDA 12)
pip install -U "jax[cuda12]"
- For TPU (Google Cloud TPU VM)
pip install -U "jax[tpu]" -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
Install Optax (optimization library of JAX)
pip install optax
Then there are two options to continue:
Option 1
Install the package locally:
pip install -e .
Option 2
Install the package from the PyPI release directly:
pip install pyinn
Quick test
python ./pyinn/main.py
License
This project is licensed under the GNU General Public License v3 - see the LICENSE for details.
Citations
If you found this library useful in academic or industry work, we appreciate your support if you consider 1) starring the project on Github, and 2) citing relevant papers:
@article{park2024engineering,
title={Engineering software 2.0 by interpolating neural networks: unifying training, solving, and calibration},
author={Park, Chanwook and Saha, Sourav and Guo, Jiachen and Zhang, Hantao and Xie, Xiaoyu and Bessa, Miguel A and Qian, Dong and Chen, Wei and Wagner, Gregory J and Cao, Jian and others},
journal={arXiv preprint arXiv:2404.10296},
year={2024}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyinn-0.1.4.tar.gz.
File metadata
- Download URL: pyinn-0.1.4.tar.gz
- Upload date:
- Size: 34.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f84ea5d4c7e98ff13dfde984b0128baa010b65d3a147ce38e6e0b963f1990ebc
|
|
| MD5 |
bc22c20fd8ce59b79419f0e32ab131fc
|
|
| BLAKE2b-256 |
a4a8f45906fbde14411b81bf6adf2273e1f599ca322ba755967b5ee6efaf9e15
|
File details
Details for the file pyinn-0.1.4-py3-none-any.whl.
File metadata
- Download URL: pyinn-0.1.4-py3-none-any.whl
- Upload date:
- Size: 36.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
accdae2235dda61e23f1c61615b6a4c109967574ce570a3d589fb5fe0ba439d3
|
|
| MD5 |
6a6ad72754ccaf297616698f5f4780e0
|
|
| BLAKE2b-256 |
0bbfd5e83f49c248408af61c7c49b84b1ad56b8bfe77f9b0d228ea3f0b6be83f
|