-
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 #50 from NREL/gb/fix_gpool
Gb/fix gpool
- Loading branch information
Showing
4 changed files
with
127 additions
and
70 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 |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
from .base import CustomNetwork, GradientUtils | ||
from .phygnn import PhysicsGuidedNeuralNetwork | ||
from .layers import Layers, HiddenLayers | ||
from .layers.custom_layers import GaussianKernelInit2D | ||
from .layers.custom_layers import GaussianAveragePooling2D | ||
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 | ||
get_custom_objects()['GaussianAveragePooling2D'] = GaussianAveragePooling2D | ||
|
||
__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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Physics Guided Neural Network version.""" | ||
|
||
__version__ = '0.0.27' | ||
__version__ = '0.0.28' |
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