-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from slimgroup/pack
Pack
- Loading branch information
Showing
7 changed files
with
41 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,21 @@ | |
Implements a distributed version of [Fourier Neural Operators](https://arxiv.org/pdf/2010.08895.pdf) | ||
based off of the [code](https://github.com/zongyi-li/fourier_neural_operator) written by Zongyi Li, Shuhao Cao, and Jack Griffiths | ||
using [DistDL](https://github.com/distdl/distdl). | ||
|
||
## Installation | ||
|
||
|
||
To install this package you can either clone it and install it in dvelopper mode: | ||
|
||
|
||
```bash | ||
git clone https://github.com/slimgroup/dfno.git | ||
cd dfno | ||
pip install -e . | ||
``` | ||
|
||
or directly install it with pip as a standard pythn package `pip install git+https://github.com/slimgroup/dfno.git` | ||
|
||
## Author | ||
|
||
This package is writeen by Thomas Grady <[email protected]> at Georgia Institute of Technology |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from .utils import * | ||
from .dfno import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from setuptools import setup, find_packages | ||
|
||
requirements = ['distdl @ git+https://github.com/mloubout/distdl.git@master', 'mat73', 'matplotlib', 'mpi4py', 'numpy', 'scipy', 'torch==1.9'] | ||
|
||
setup( | ||
name = 'dfno', | ||
version = '0.1', | ||
author = 'Thomas Grady', | ||
author_email = '[email protected]', | ||
license = 'MIT', | ||
install_requires=requirements, | ||
packages = find_packages(), | ||
description = 'Distributed Fourier Neural Operator based on DistDL') |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters