-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding a KerasMLPRegression class to go with the KerasMLPClassifier. #1707
Adding a KerasMLPRegression class to go with the KerasMLPClassifier. #1707
Conversation
@@ -145,7 +151,6 @@ def evaluate(self,edict): | |||
featureValuesShape = fval.shape | |||
if featureValuesShape != fval.shape: | |||
self.raiseAnError(IOError,'In training set, the number of values provided for feature '+feat+' are not consistent to other features!') | |||
self._localNormalizeData(values,names,feat) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a bug since it changed the normalization constants based on the evaluation data.
This allows regression to be done for non-timeseries data.
fb91e1e
to
b0dc43a
Compare
Job Test qsubs sawtooth on bb34c45 : invalidated by @joshua-cogliati-inl Testing server removal of raven_libraries |
Job Test qsubs sawtooth on bb34c45 : invalidated by @joshua-cogliati-inl changed civet recipe |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR is good.
Checklist is good with exception about qsub falcon test. |
@joshua-cogliati-inl I have merged your PR, and thanks for your contribution. |
Job Test qsubs sawtooth on bb34c45 : invalidated by @joshua-cogliati-inl checking again |
This allows regression to be done for non-timeseries data.
Pull Request Description
What issue does this change request address?
Closes #1706
What are the significant changes in functionality due to this change request?
Adds a Keras MLP Regression class, and fixes a bug in the Keras Regression.
For Change Control Board: Change Request Review
The following review must be completed by an authorized member of the Change Control Board.
<internalParallel>
to True.raven/tests/framework/user_guide
andraven/docs/workshop
) have been changed, the associated documentation must be reviewed and assured the text matches the example.