-
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 #6 from NREL/mnr/ml_model
Model Interfaces
- Loading branch information
Showing
18 changed files
with
1,901 additions
and
32 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
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,8 +1,9 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Physics Guided Neural Network python library.""" | ||
import os | ||
from .model_interfaces import TfModel | ||
from .phygnn import PhysicsGuidedNeuralNetwork | ||
from .tf_utilities import tf_isin, tf_log10 | ||
from .utilities import tf_isin, tf_log10 | ||
|
||
PHYGNNDIR = os.path.dirname(os.path.realpath(__file__)) | ||
TESTDATADIR = os.path.join(os.path.dirname(PHYGNNDIR), 'tests', 'data') |
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,3 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Model Interfaces""" | ||
from .tf_model import TfModel |
Oops, something went wrong.