-
Notifications
You must be signed in to change notification settings - Fork 21
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 #49 from NREL/gb/gauss_pool
Gb/gauss pool
- Loading branch information
Showing
4 changed files
with
104 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -5,8 +5,12 @@ | |
from .base import CustomNetwork, GradientUtils | ||
from .phygnn import PhysicsGuidedNeuralNetwork | ||
from .layers import Layers, HiddenLayers | ||
from .layers.custom_layers import GaussianKernelInit2D | ||
from .utilities import PreProcess, tf_isin, tf_log10 | ||
from phygnn.version import __version__ | ||
from tensorflow.keras.utils import get_custom_objects | ||
|
||
get_custom_objects()['GaussianKernelInit2D'] = GaussianKernelInit2D | ||
|
||
__author__ = """Grant Buster""" | ||
__email__ = "[email protected]" | ||
|
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
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ numpy>=1.16 | |
pandas>=0.25 | ||
pytest>=5.2 | ||
scikit-learn>=1.2 | ||
tensorflow | ||
tensorflow>2.4,<2.16 |
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