-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
additional test and added gaussian kernel init to keras custom objects
- Loading branch information
1 parent
c32187c
commit c6d9b24
Showing
2 changed files
with
10 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