Skip to content

Releases: NREL/phygnn

Better training history

08 Feb 22:16
44c6133
Compare
Choose a tag to compare

What’s Changed

Release for DOI

03 Feb 17:04
b8f7605
Compare
Choose a tag to compare

What’s Changed

GAN implementation

03 Feb 16:08
9a3e49f
Compare
Choose a tag to compare

What’s Changed

Breaking change: switched position of y_true and y_predicted in p_fun to match the keras metrics methods.

Bug Fixes

Bug fix for dropout layers with phygnn

13 Jan 17:58
657551a
Compare
Choose a tag to compare

What’s Changed

phygnn wasnt executing dropout layers correctly. The Dropout layer object needed a boolean flag to know if it was training or not. Fixed with additional tests.

Bug fix for saving phygnn model with tensorflow 2.4.0

04 Jan 21:39
d8e6ad1
Compare
Choose a tag to compare

What’s Changed

  • phygnn save() to now save optimizer config dict instead of optimizer … (#17) @grantbuster

phygnn model interface fixes and better one hot encoding

19 Nov 03:14
701c9dd
Compare
Choose a tag to compare

What’s Changed

Features

  • add one_hot_categories to model handlers (#14) @MRossol

Bug Fixes

  • add one_hot_categories to model handlers (#14) @MRossol

Added phygnn model as input to p_fun

30 Sep 19:31
c1581e3
Compare
Choose a tag to compare

What’s Changed

Added phygnn model as input to p_fun. This will enable custom loss functions that can evaluate predictions of the model at the current moment in training.

Added dummy pfun for user example.

  • Added phygnn model instance as input arg to p_fun. Added dummy exaple (#11) @grantbuster

add PhygnnModel interface

21 Sep 16:47
Compare
Choose a tag to compare

What’s Changed

Features

Bug Fixes

Normalization to PreProcess

26 Aug 16:58
Compare
Choose a tag to compare

What’s Changed

  • Move normalize and unnormalize methods from BaseMethod to PreProcess
  • Add check for stdev values of ~0 and replace with 1s

Features

  • move normalization methods to PreProcessing (#7) @MRossol

Model Interfaces added

25 Aug 18:52
0e3380a
Compare
Choose a tag to compare

What’s Changed

  • model_interfaces sub-package added with interfaces for TfModel and RandomForestModel
  • utilities moved to utilities sub-package

Features