-
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 DSS capabilities #1619
Adding DSS capabilities #1619
Conversation
# assert | ||
assert(isinstance(inputIn, list)) | ||
assert(isinstance(inputIn[0], xr.Dataset) or isinstance(inputIn[0], DataObjects.DataSet)) | ||
# the input can be either be a list of dataobjects or a list of datasets (xarray) |
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.
These asserts will error out!
If they are necessary, maybe assert(isinstance(inputIn['Data][0][-1],xr.Dataset))
?
Edited due to invalid assert errors.
Job Precheck on 07da9b7 : invalidated by @joshua-cogliati-inl checking civet. |
""" | ||
# assert | ||
assert(isinstance(inputIn["Data"], list)) | ||
assert(isinstance(inputIn["Data"][0][-1], xr.Dataset) and isinstance(inputI["Data"][1][-1], xr.Dataset)) |
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.
There is a missing n
in inputI['Data'][1][-1]
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.
I tried to push it my self but it gave me:
remote: Password authentication is temporarily disabled as part of a brownout. Please use a personal access token instead. remote: Please see https://github.blog/2020-07-30-token-authentication-requirements-for-api-and-git-operations/ for more information. fatal: unable to access 'https://github.com/idaholab/raven.git/': The requested URL returned error: 403
@yoshiurr-INL Can you rebase your branch with devel and try to resolve the conflicts? |
As part of last fiscal year's milestone completion, the code was repeatedly tested under various types of time dependent data. The code was improved for each issue encountered. The import for "Validation" has been updated to "ValidationBase".
After rebase, forgot to select which head to change before committing changes to this branch.
Changed line 173 to adapt with new input format implemented after converting to ValidationBase.py.
…/raven into yoshrk-dss-validation_pp
@yoshiurr-INL @Jimmy-INL This branch has been cleaned up. |
@yoshiurr-INL Is it ready to be reviewed? |
Readjusted the postprocessed data output name.
The output name is changed according to the Probabilistic model in the user manual.
Added more test files
Deleting to test civet errors
Deleting to test civet errors
Deleting to test civet errors
Deleting to test civet errors
Deleting to test civet errors
Deleting to test civet errors
Returning to previous state
Job Test Fedora 31 on cbc7fe1 : invalidated by @wangcj05 retesting |
Job Test Fedora 32 on cbc7fe1 : invalidated by @Jimmy-INL |
Edited the "inputI" to"inputIn"
@@ -404,6 +404,7 @@ | |||
\input{reducedOrderModeling.tex} | |||
\input{statisticalAnalysis.tex} | |||
\input{dataMining.tex} | |||
\input{dssPostProcessor.tex} |
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 file is not uploaded to your remote branch.
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.
@yoshiurr-INL I have some additional comments for your consideration. In addition:
- there is a missing .tex file for theory manual
- I am wondering if you can desire a analytic test case for DSS in future PR.
doc/user_manual/metrics.tex
Outdated
|
||
The specifications of a DSS metric is defined within the \xmlNode{Metric} XML block. The attribute \xmlAttr{subType} must be \textbf{PPDSS} (see \ref{subsubsec:Validation}) in the \xmlNode{PostProcessor} for the outputs of the post-processor to be in the right format for DSS metric inputs. | ||
|
||
This XML node needs to contain the attributes: |
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.
It seems 'attributes' is still used.
@yoshiurr-INL There are some compiling issue with the theory manual, could you check that? |
Job Test qsubs falcon on 9632050 : invalidated by @yoshiurr-INL |
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 PR is good to me.
Job Mingw Test on f81f692 : invalidated by @joshua-cogliati-inl restarted civet |
Job Mingw Test on f81f692 : invalidated by @yoshiurr-INL Need to restart checking process due to win-mingw was not restarted. |
Pull Request Description
What issue does this change request address? (Use "#" before the issue to link it, i.e., #42.)
Closes #1617
What are the significant changes in functionality due to this change request?
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.