Skip to content
Snippets Groups Projects
Commit 5dae6fb9 authored by Alina Lacheim's avatar Alina Lacheim
Browse files

fixed ishigami example

parent 2178dd07
No related branches found
No related tags found
1 merge request!37Fix/post processing
...@@ -106,6 +106,7 @@ if __name__ == "__main__": ...@@ -106,6 +106,7 @@ if __name__ == "__main__":
ExpDesign = ExpDesigns(Inputs) ExpDesign = ExpDesigns(Inputs)
# One-shot (normal) or Sequential Adaptive (sequential) Design # One-shot (normal) or Sequential Adaptive (sequential) Design
ExpDesign.method = 'normal'
ExpDesign.n_init_samples = 50 ExpDesign.n_init_samples = 50
# Sampling methods # Sampling methods
...@@ -185,7 +186,7 @@ if __name__ == "__main__": ...@@ -185,7 +186,7 @@ if __name__ == "__main__":
PostPCE.check_accuracy(n_samples=3000) PostPCE.check_accuracy(n_samples=3000)
# Plot the evolution of the KLD,BME, and Modified LOOCV error # Plot the evolution of the KLD,BME, and Modified LOOCV error
if MetaModelOpts.ExpDesign.method == 'sequential': if ExpDesign.method == 'sequential':
PostPCE.plot_seq_design_diagnostics() PostPCE.plot_seq_design_diagnostics()
# Plot the sobol indices # Plot the sobol indices
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment