Skip to content
Snippets Groups Projects
Commit a249d6ca authored by kohlhaasrebecca's avatar kohlhaasrebecca
Browse files

Add 3d plot to analytical_example

parent f646e58d
No related branches found
No related tags found
1 merge request!37Fix/post processing
......@@ -32,7 +32,7 @@ from bayesvalidrox import PyLinkForwardModel, Input, ExpDesigns, PCE, PostProces
if __name__ == "__main__":
# Number of parameters
ndim = 10 # 2, 10
ndim = 2 # 2, 10
# =====================================================
# ============= COMPUTATIONAL MODEL ================
......@@ -217,8 +217,8 @@ if __name__ == "__main__":
# Run using the engine
engine = Engine(MetaModelOpts, Model, ExpDesign)
engine.train_sequential()
#engine.train_normal()
#engine.train_sequential()
engine.train_normal()
# Load the objects
# with open(f"PCEModel_{Model.name}.pkl", "rb") as input:
......@@ -236,9 +236,10 @@ if __name__ == "__main__":
PostPCE.check_accuracy(n_samples=300)
# Compute the moments and compare with the Monte-Carlo reference
# TODO: generalize the moment calculation
#if MetaModelOpts.meta_model_type != 'GPE':
PostPCE.plot_moments()
# Plot 3D output of the MetaModel
PostPCE.plot_metamodel_3d()
# Plot the evolution of the KLD,BME, and Modified LOOCV error
#if MetaModelOpts.ExpDesign.method == 'sequential':
......@@ -246,8 +247,6 @@ if __name__ == "__main__":
# PostPCE.plot_seq_design_diagnostics(refBME_KLD)
# Plot the sobol indices
# TODO: generalize this by using moment calculation(?)
#if MetaModelOpts.meta_model_type != 'GPE':
total_sobol = PostPCE.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