diff --git a/docs/build/doctrees/al_description.doctree b/docs/build/doctrees/al_description.doctree
index 5f366996787c9ccd381b08ec3663147404becf1a..aff225b68270638d460442acf6078d2bd37fe05b 100644
Binary files a/docs/build/doctrees/al_description.doctree and b/docs/build/doctrees/al_description.doctree differ
diff --git a/docs/build/doctrees/environment.pickle b/docs/build/doctrees/environment.pickle
index 0df551bdab8506d738101801358d557f1ca8e338..26927aac48dfba67294917b5f99f81c09ec6a298 100644
Binary files a/docs/build/doctrees/environment.pickle and b/docs/build/doctrees/environment.pickle differ
diff --git a/docs/build/doctrees/index.doctree b/docs/build/doctrees/index.doctree
index 6274b03111a42b7f4e02e11ea170f4c14f510dd6..7131106e6aa2e77f65e501fc37e5e36e38a49954 100644
Binary files a/docs/build/doctrees/index.doctree and b/docs/build/doctrees/index.doctree differ
diff --git a/docs/build/doctrees/surrogate_description.doctree b/docs/build/doctrees/surrogate_description.doctree
index 0c4941c5424b03f3bdb35a35f68fb22aa3e7b881..81898fef1fbbe5d6a6b76b051892a12dc74302fc 100644
Binary files a/docs/build/doctrees/surrogate_description.doctree and b/docs/build/doctrees/surrogate_description.doctree differ
diff --git a/docs/build/html/_sources/al_description.rst.txt b/docs/build/html/_sources/al_description.rst.txt
index 636fa7877bb9b02fd4512c11459647e3c9a57ef7..c1d5e99f2ec65aeaf8f0933096bd351ca0c6e465 100644
--- a/docs/build/html/_sources/al_description.rst.txt
+++ b/docs/build/html/_sources/al_description.rst.txt
@@ -1,8 +1,27 @@
 Active learning: iteratively expanding the training set
 *******************************************************
+Active learning (AL), also called sequential training, is the iterative choice of additional training samples after the initial training of a surrogate model.
+The new samples can be chosen in an explorative manner or by exploiting available data and properties of the surrogate.
 
-
+.. warning::
+   The active learning methods are currently being reworked. 
+   This should not change the function call ``Engine.train_sequential()``, but will change the associated class structures.
 
 .. image:: ../diagrams/active_learning_reduced.png
    :width: 550
-   :alt: UML diagram for the classes and functions used in active learning in BayesValidRox.
\ No newline at end of file
+   :alt: UML diagram for the classes and functions used in active learning in BayesValidRox.
+   
+In BayesValidRox AL is realized by additional properties of the :any:`bayesvalidrox.surrogate_models.exp_designs.ExpDesigns` and :any:`bayesvalidrox.surrogate_models.engine.Engine` classes without any changes to the surrogate model.
+
+Exploration, exploitation and tradeoff
+======================================
+**Exploration** methods choose the new samples in a space-filling manner, while **exploitation methods** make use of available data or properties of the surrogate models, such as the estimated surrogate standard deviation.
+Exploration methods in BayesValidRox include random or latin-hypercube sampling, voronoi sampling, choice based on leave-one-out cross validation or dual-annealing.
+Exploitation can be set to Bayesian designs, such as Bayesian3 Active Learning, or variance-based designs.
+
+The tradeoff between exploration and exploitation is defined by **tradeoff-schemes**, such as an equal split, epsilon-decreaseing or adaptive schemes.
+
+
+Example
+=======
+We take the engine from :any:`surrogate_description` and change the settings to perform sequential training.
diff --git a/docs/build/html/_sources/index.rst.txt b/docs/build/html/_sources/index.rst.txt
index dd9bb06fb0d2e92d10a644de1f03f8bd6e112265..b533a730c30cb41d03e9e2c20d0ef9683185f53d 100644
--- a/docs/build/html/_sources/index.rst.txt
+++ b/docs/build/html/_sources/index.rst.txt
@@ -18,7 +18,6 @@ Links
 * PyPI: https://pypi.org/project/bayesvalidrox/
 * Documentation:
 
-#TODO Add other links
 
 Installation
 ------------
@@ -28,35 +27,37 @@ This package runs under Python 3.9 for versions <1.0.0 and 3.9+ from version 1.0
 
    pip install bayesvalidrox
 
-#TODO Note other needed installations and tips
 
 Quickstart
 ----------
 #TODO A minimal example to get people started
 
-See also
---------
-#TODO Link other websites that are related to BVR
-
 License
 -------
 #TODO Note the License under which BVR is released
 
+Contribution
+------------
+We would be happy for you to contribute to **BayesValidRox**.
+This can include e.g. reporting issues, proposing new features, working on features, or support with the documentation.
+If you want to contibute, check out our contribution_ guidelines.
+You can contact us on the gitlab_ page.
+
+.. _gitlab: https://git.iws.uni-stuttgart.de/inversemodeling/bayesvalidrox
+
+.. _contribution: https://git.iws.uni-stuttgart.de/inversemodeling/bayesvalidrox/-/blob/docs/sphinx_new/CONTRIBUTING.md?ref_type=heads
+
 Further contents
 ----------------
 
 .. toctree::
-   :maxdepth: 2
+   :maxdepth: 1
    
    packagedescription
    tutorial
    examples
    api
-   
-Contact
--------
-#TODO Add options here
-   
+
    
 Indices and tables
 ==================
diff --git a/docs/build/html/_sources/surrogate_description.rst.txt b/docs/build/html/_sources/surrogate_description.rst.txt
index 6cd7bcd296ddd884cc3b07399f82b21d4f84d81e..61d89e6a6ff5bf1ffa27210ce1a077ac0634e8c9 100644
--- a/docs/build/html/_sources/surrogate_description.rst.txt
+++ b/docs/build/html/_sources/surrogate_description.rst.txt
@@ -2,16 +2,9 @@ Training surrogate models
 *************************
 Surrogate models, also called metamodels, are models that are built on evaluations of full models with the goal to capture the full behaviour, but reduce the cost of evaluations.
 
-In BayesValidRox two types of surrogate model are available, polynomial chaos expansion and Gaussian processes.
-The Polynomial Chaos Expansion (PCE) and its variant the arbitrary Polynomial Chaos Expansion (aPC) build polynomials from the given distributions of uncertain inputs.
-Gaussian processes (GP) give kernel-based representations of the model results.
-
 The surrogate models are trained on datasets :math:`\mathcal{D}=(x_i, y_i)_{i=1,\dots,M)` that consist of :math:`M` samples of the uncertain parameters and the corresponding model outputs.
 We call this dataset the training data, with training samples :math:`(x_i)_{i=1,\dots,M)`.
 
-
-MetaModel and Engine classes
-============================
 BayesValidRox creates surrogate models as objects of the class :any:`bayesvalidrox.surrogate_models.surrogate_models.MetaModel`.
 Training is performed by the class :any:`bayesvalidrox.surrogate_models.engine.Engine`.
 
@@ -21,6 +14,19 @@ Training is performed by the class :any:`bayesvalidrox.surrogate_models.engine.E
    
 MetaModel options
 =================
+In BayesValidRox two types of surrogate model are available, Polynomial Chaos Expansion (PCE) and Gaussian Processes (GP).
+The Polynomial Chaos Expansion (PCE) and its variant the arbitrary Polynomial Chaos Expansion (aPC) build polynomials from the given distributions of uncertain inputs.
+Gaussian processes (GP) give kernel-based representations of the model results.
+
+We provide a broad range of regression methods for useage with PCE-surrogates that can be set by the parameter ``MetaModel.pce_reg_method``.
+These include Ordinary Least Squares (``ols``), Bayesian Ridge Regression (``brr``), Least angle regression (``lars``), Bayesian ARD Regression (``ard``), Fast Bayesian ARD Regression (``fastard``), Variational Bayesian Learning (``vbl``) and Emperical Bayesian Learning (``ebl``).
+Depending on the chosen regression method, the surrogate outputs a mean approximation and an associated standard deviation.
+
+Dimensionality reduction can be performed on outputs with Principal Component Analysis (PCA).
+PCA is applied on the set of surrogates built for the ``x_values`` defined in the model.
+
+If bootstrapping is used, multiple surrogates will be created based on bootstrapped training data, and jointly evaluated.
+The final outputs will then be the mean and standard deviation of their approximations.
 
 
 Training with the engine
diff --git a/docs/build/html/al_description.html b/docs/build/html/al_description.html
index aa3d9fc17c66f32af123c59bce1c89f079b2b990..d00aea23bc8449a6c2ef71e173813d4df09573bf 100644
--- a/docs/build/html/al_description.html
+++ b/docs/build/html/al_description.html
@@ -141,7 +141,7 @@
           <svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
         </button>
       </div>
-      <label class="toc-overlay-icon toc-header-icon no-toc" for="__toc">
+      <label class="toc-overlay-icon toc-header-icon" for="__toc">
         <div class="visually-hidden">Toggle table of contents sidebar</div>
         <i class="icon"><svg><use href="#svg-toc"></use></svg></i>
       </label>
@@ -329,7 +329,7 @@
               <svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
             </button>
           </div>
-          <label class="toc-overlay-icon toc-content-icon no-toc" for="__toc">
+          <label class="toc-overlay-icon toc-content-icon" for="__toc">
             <div class="visually-hidden">Toggle table of contents sidebar</div>
             <i class="icon"><svg><use href="#svg-toc"></use></svg></i>
           </label>
@@ -337,7 +337,26 @@
         <article role="main">
           <section id="active-learning-iteratively-expanding-the-training-set">
 <h1>Active learning: iteratively expanding the training set<a class="headerlink" href="#active-learning-iteratively-expanding-the-training-set" title="Link to this heading">¶</a></h1>
+<p>Active learning (AL), also called sequential training, is the iterative choice of additional training samples after the initial training of a surrogate model.
+The new samples can be chosen in an explorative manner or by exploiting available data and properties of the surrogate.</p>
+<div class="admonition warning">
+<p class="admonition-title">Warning</p>
+<p>The active learning methods are currently being reworked.
+This should not change the function call <code class="docutils literal notranslate"><span class="pre">Engine.train_sequential()</span></code>, but will change the associated class structures.</p>
+</div>
 <a class="reference internal image-reference" href="_images/active_learning_reduced.png"><img alt="UML diagram for the classes and functions used in active learning in BayesValidRox." src="_images/active_learning_reduced.png" style="width: 550px;" /></a>
+<p>In BayesValidRox AL is realized by additional properties of the <a class="reference internal" href="_autosummary/bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.html#bayesvalidrox.surrogate_models.exp_designs.ExpDesigns" title="bayesvalidrox.surrogate_models.exp_designs.ExpDesigns"><code class="xref any py py-class docutils literal notranslate"><span class="pre">bayesvalidrox.surrogate_models.exp_designs.ExpDesigns</span></code></a> and <a class="reference internal" href="_autosummary/bayesvalidrox.surrogate_models.engine.Engine.html#bayesvalidrox.surrogate_models.engine.Engine" title="bayesvalidrox.surrogate_models.engine.Engine"><code class="xref any py py-class docutils literal notranslate"><span class="pre">bayesvalidrox.surrogate_models.engine.Engine</span></code></a> classes without any changes to the surrogate model.</p>
+<section id="exploration-exploitation-and-tradeoff">
+<h2>Exploration, exploitation and tradeoff<a class="headerlink" href="#exploration-exploitation-and-tradeoff" title="Link to this heading">¶</a></h2>
+<p><strong>Exploration</strong> methods choose the new samples in a space-filling manner, while <strong>exploitation methods</strong> make use of available data or properties of the surrogate models, such as the estimated surrogate standard deviation.
+Exploration methods in BayesValidRox include random or latin-hypercube sampling, voronoi sampling, choice based on leave-one-out cross validation or dual-annealing.
+Exploitation can be set to Bayesian designs, such as Bayesian3 Active Learning, or variance-based designs.</p>
+<p>The tradeoff between exploration and exploitation is defined by <strong>tradeoff-schemes</strong>, such as an equal split, epsilon-decreaseing or adaptive schemes.</p>
+</section>
+<section id="example">
+<h2>Example<a class="headerlink" href="#example" title="Link to this heading">¶</a></h2>
+<p>We take the engine from <a class="reference internal" href="surrogate_description.html"><span class="doc">Training surrogate models</span></a> and change the settings to perform sequential training.</p>
+</section>
 </section>
 
         </article>
@@ -383,9 +402,29 @@
         
       </footer>
     </div>
-    <aside class="toc-drawer no-toc">
+    <aside class="toc-drawer">
       
       
+      <div class="toc-sticky toc-scroll">
+        <div class="toc-title-container">
+          <span class="toc-title">
+            On this page
+          </span>
+        </div>
+        <div class="toc-tree-container">
+          <div class="toc-tree">
+            <ul>
+<li><a class="reference internal" href="#">Active learning: iteratively expanding the training set</a><ul>
+<li><a class="reference internal" href="#exploration-exploitation-and-tradeoff">Exploration, exploitation and tradeoff</a></li>
+<li><a class="reference internal" href="#example">Example</a></li>
+</ul>
+</li>
+</ul>
+
+          </div>
+        </div>
+      </div>
+      
       
     </aside>
   </div>
diff --git a/docs/build/html/index.html b/docs/build/html/index.html
index 9fd0f8c02f314f19c4cf3f22c086cf6074b1b757..ac12863ce5183832f1a06829fdb056e17619fa1b 100644
--- a/docs/build/html/index.html
+++ b/docs/build/html/index.html
@@ -348,7 +348,6 @@ The functionality and options for the different classes is described more in-dep
 <li><p>PyPI: <a class="reference external" href="https://pypi.org/project/bayesvalidrox/">https://pypi.org/project/bayesvalidrox/</a></p></li>
 <li><p>Documentation:</p></li>
 </ul>
-<p>#TODO Add other links</p>
 </section>
 <section id="installation">
 <h2>Installation<a class="headerlink" href="#installation" title="Link to this heading">¶</a></h2>
@@ -356,62 +355,33 @@ The functionality and options for the different classes is described more in-dep
 <div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>pip<span class="w"> </span>install<span class="w"> </span>bayesvalidrox
 </pre></div>
 </div>
-<p>#TODO Note other needed installations and tips</p>
 </section>
 <section id="quickstart">
 <h2>Quickstart<a class="headerlink" href="#quickstart" title="Link to this heading">¶</a></h2>
 <p>#TODO A minimal example to get people started</p>
 </section>
-<section id="see-also">
-<h2>See also<a class="headerlink" href="#see-also" title="Link to this heading">¶</a></h2>
-<p>#TODO Link other websites that are related to BVR</p>
-</section>
 <section id="license">
 <h2>License<a class="headerlink" href="#license" title="Link to this heading">¶</a></h2>
 <p>#TODO Note the License under which BVR is released</p>
 </section>
+<section id="contribution">
+<h2>Contribution<a class="headerlink" href="#contribution" title="Link to this heading">¶</a></h2>
+<p>We would be happy for you to contribute to <strong>BayesValidRox</strong>.
+This can include e.g. reporting issues, proposing new features, working on features, or support with the documentation.
+If you want to contibute, check out our <a class="reference external" href="https://git.iws.uni-stuttgart.de/inversemodeling/bayesvalidrox/-/blob/docs/sphinx_new/CONTRIBUTING.md?ref_type=heads">contribution</a> guidelines.
+You can contact us on the <a class="reference external" href="https://git.iws.uni-stuttgart.de/inversemodeling/bayesvalidrox">gitlab</a> page.</p>
+</section>
 <section id="further-contents">
 <h2>Further contents<a class="headerlink" href="#further-contents" title="Link to this heading">¶</a></h2>
 <div class="toctree-wrapper compound">
 <ul>
-<li class="toctree-l1"><a class="reference internal" href="packagedescription.html">USER GUIDE</a><ul>
-<li class="toctree-l2"><a class="reference internal" href="packagedescription.html#installation">Installation</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="tutorial.html">TUTORIAL</a><ul>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#import-necessary-libraries">Import necessary libraries</a></li>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#define-the-model-with-pylinkforwardmodel">Define the model with PyLinkForwardModel</a></li>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#define-probabilistic-input-model">Define probabilistic input model</a></li>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#define-surrogate-meta-model">Define surrogate (meta) model</a></li>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#set-the-experimental-design">Set the experimental design</a></li>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#train-the-surrogate-with-an-engine">Train the surrogate with an engine</a></li>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#sequential-training">Sequential training</a></li>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#post-processing">Post-processing</a></li>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#bayesian-inference">Bayesian Inference</a></li>
-<li class="toctree-l2"><a class="reference internal" href="tutorial.html#define-the-data-uncertainty">Define the data uncertainty</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="examples.html">EXAMPLES</a><ul>
-<li class="toctree-l2"><a class="reference internal" href="analyticalfunction.html">Analytical function</a></li>
-<li class="toctree-l2"><a class="reference internal" href="beam.html">Beam</a></li>
-<li class="toctree-l2"><a class="reference internal" href="borehole.html">Borehole</a></li>
-<li class="toctree-l2"><a class="reference internal" href="ishigami.html">Ishigami</a></li>
-<li class="toctree-l2"><a class="reference internal" href="modelcomparison.html">Model comparison</a></li>
-<li class="toctree-l2"><a class="reference internal" href="ohaganfunction.html">OHagan-function</a></li>
-<li class="toctree-l2"><a class="reference internal" href="pollution.html">Pollution</a></li>
-</ul>
-</li>
-<li class="toctree-l1"><a class="reference internal" href="api.html">API</a><ul>
-<li class="toctree-l2"><a class="reference internal" href="_autosummary/bayesvalidrox.html">bayesvalidrox</a></li>
-</ul>
-</li>
+<li class="toctree-l1"><a class="reference internal" href="packagedescription.html">USER GUIDE</a></li>
+<li class="toctree-l1"><a class="reference internal" href="tutorial.html">TUTORIAL</a></li>
+<li class="toctree-l1"><a class="reference internal" href="examples.html">EXAMPLES</a></li>
+<li class="toctree-l1"><a class="reference internal" href="api.html">API</a></li>
 </ul>
 </div>
 </section>
-<section id="contact">
-<h2>Contact<a class="headerlink" href="#contact" title="Link to this heading">¶</a></h2>
-<p>#TODO Add options here</p>
-</section>
 </section>
 <section id="indices-and-tables">
 <h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Link to this heading">¶</a></h1>
@@ -471,10 +441,9 @@ The functionality and options for the different classes is described more in-dep
 <li><a class="reference internal" href="#links">Links</a></li>
 <li><a class="reference internal" href="#installation">Installation</a></li>
 <li><a class="reference internal" href="#quickstart">Quickstart</a></li>
-<li><a class="reference internal" href="#see-also">See also</a></li>
 <li><a class="reference internal" href="#license">License</a></li>
+<li><a class="reference internal" href="#contribution">Contribution</a></li>
 <li><a class="reference internal" href="#further-contents">Further contents</a></li>
-<li><a class="reference internal" href="#contact">Contact</a></li>
 </ul>
 </li>
 <li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li>
diff --git a/docs/build/html/searchindex.js b/docs/build/html/searchindex.js
index fba7b51c0e7b132a77a494e891df606e07ea0c41..649219d8b553a969734cc8d31b10ccee2dd1bf14 100644
--- a/docs/build/html/searchindex.js
+++ b/docs/build/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"API": [[66, "api"]], "Active learning: iteratively expanding the training set": [[64, "active-learning-iteratively-expanding-the-training-set"]], "Arguments": [[29, "arguments"], [42, "arguments"], [42, "id2"]], "Attributes": [[3, "attributes"], [5, "attributes"], [7, "attributes"], [9, "attributes"], [13, "attributes"], [16, "attributes"], [25, "attributes"], [26, "attributes"], [39, "attributes"], [42, "attributes"], [47, "attributes"], [49, "attributes"], [50, "attributes"], [52, "attributes"], [55, "attributes"], [58, "attributes"], [60, "attributes"]], "Bayesian Inference": [[81, "bayesian-inference"]], "Bayesian inference and multi-model comparison": [[67, "bayesian-inference-and-multi-model-comparison"]], "Contact": [[71, "contact"]], "Define probabilistic input model": [[81, "define-probabilistic-input-model"]], "Define surrogate (meta) model": [[81, "define-surrogate-meta-model"]], "Define the data uncertainty": [[81, "define-the-data-uncertainty"]], "Define the model with PyLinkForwardModel": [[81, "define-the-model-with-pylinkforwardmodel"]], "Discrepancy": [[65, "id3"], [68, "id3"]], "EXAMPLES": [[70, "examples"]], "Example": [[72, "example"], [74, "example"], [79, "example"], [80, "example"]], "Example: Analytical function": [[65, "example-analytical-function"]], "Example: OHagan-function": [[76, "example-ohagan-function"]], "Example: beam": [[68, "example-beam"]], "Example: borehole": [[69, "example-borehole"]], "Example: ishigami": [[73, "example-ishigami"]], "Example: model comparison": [[75, "example-model-comparison"]], "Example: pollution": [[78, "example-pollution"]], "Examples": [[49, "examples"]], "Further contents": [[71, "further-contents"]], "Import necessary libraries": [[81, "import-necessary-libraries"]], "Indices and tables": [[71, "indices-and-tables"]], "Installation": [[71, "installation"], [77, "installation"]], "License": [[71, "license"]], "Links": [[71, "links"]], "MetaModel and Engine classes": [[80, "metamodel-and-engine-classes"]], "MetaModel options": [[80, "metamodel-options"]], "MetaModel settings": [[65, "id4"], [68, "id4"], [69, "id3"], [73, "id3"], [75, "id7"], [76, "id3"], [78, "id3"]], "Model 1: L2_model": [[75, "model-1-l2-model"]], "Model 1: NL2_model": [[75, "model-1-nl2-model"]], "Model 1: NL4_model": [[75, "model-1-nl4-model"]], "Model and Data": [[65, "model-and-data"], [68, "model-and-data"], [69, "model-and-data"], [73, "model-and-data"], [76, "model-and-data"], [78, "model-and-data"]], "Models": [[74, "models"]], "Note": [[39, "note"], [60, "note"]], "Notes": [[24, "notes"], [25, "notes"], [26, "notes"], [52, "notes"], [55, "notes"]], "Overview": [[77, "overview"]], "Parameters": [[3, "parameters"], [3, "id2"], [3, "id4"], [3, "id7"], [5, "parameters"], [5, "id1"], [5, "id3"], [5, "id5"], [5, "id7"], [5, "id9"], [5, "id11"], [5, "id13"], [5, "id15"], [7, "parameters"], [9, "parameters"], [9, "id1"], [9, "id3"], [9, "id5"], [9, "id7"], [9, "id9"], [9, "id11"], [10, "parameters"], [13, "parameters"], [13, "id1"], [13, "id4"], [13, "id6"], [13, "id8"], [13, "id10"], [16, "parameters"], [16, "id2"], [16, "id4"], [16, "id6"], [16, "id8"], [16, "id10"], [16, "id12"], [17, "parameters"], [22, "parameters"], [24, "parameters"], [24, "id2"], [24, "id4"], [24, "id6"], [24, "id8"], [24, "id12"], [25, "id1"], [25, "id3"], [25, "id5"], [25, "id7"], [25, "id9"], [25, "id11"], [25, "id15"], [25, "id17"], [26, "id1"], [26, "id3"], [26, "id5"], [26, "id7"], [26, "id9"], [26, "id11"], [26, "id15"], [26, "id17"], [27, "parameters"], [29, "parameters"], [29, "id1"], [29, "id3"], [29, "id5"], [29, "id8"], [29, "id14"], [29, "id16"], [29, "id18"], [30, "parameters"], [31, "parameters"], [32, "parameters"], [34, "parameters"], [35, "parameters"], [36, "parameters"], [37, "parameters"], [39, "parameters"], [39, "id2"], [39, "id4"], [39, "id6"], [39, "id8"], [39, "id10"], [39, "id12"], [39, "id14"], [39, "id16"], [40, "parameters"], [47, "parameters"], [47, "id2"], [47, "id4"], [52, "parameters"], [52, "id1"], [52, "id2"], [52, "id5"], [52, "id7"], [52, "id9"], [52, "id11"], [52, "id13"], [52, "id17"], [55, "parameters"], [55, "id1"], [55, "id3"], [55, "id5"], [55, "id8"], [55, "id10"], [55, "id14"], [55, "id16"], [58, "parameters"], [58, "id1"], [60, "parameters"], [60, "id4"], [60, "id6"], [60, "id8"], [60, "id10"], [60, "id12"], [60, "id14"], [60, "id16"], [60, "id18"], [60, "id20"], [61, "parameters"], [62, "parameters"], [63, "parameters"]], "Parameters:": [[25, "parameters"], [26, "parameters"]], "Post-processing": [[81, "post-processing"]], "Postprocessing": [[79, "postprocessing"]], "Priors": [[65, "id2"], [68, "id2"], [69, "id2"], [73, "id2"], [76, "id2"], [78, "id2"]], "Priors, input space and experimental design": [[72, "priors-input-space-and-experimental-design"]], "Priors1": [[75, "id2"], [75, "id4"], [75, "id6"]], "Pylink model": [[65, "id1"], [68, "id1"], [69, "id1"], [73, "id1"], [76, "id1"], [78, "id1"]], "Pylink model1": [[75, "id1"], [75, "id3"], [75, "id5"]], "Quickstart": [[71, "quickstart"]], "Raises": [[13, "raises"], [29, "raises"], [62, "raises"]], "References": [[52, "references"], [55, "references"], [55, "id7"], [58, "references"], [58, "id2"]], "Returns": [[3, "returns"], [3, "id1"], [3, "id3"], [3, "id5"], [3, "id6"], [3, "id8"], [5, "returns"], [5, "id2"], [5, "id4"], [5, "id6"], [5, "id8"], [5, "id10"], [5, "id12"], [5, "id14"], [5, "id16"], [5, "id17"], [7, "returns"], [9, "returns"], [9, "id2"], [9, "id4"], [9, "id6"], [9, "id8"], [9, "id10"], [9, "id12"], [10, "returns"], [13, "returns"], [13, "id2"], [13, "id3"], [13, "id5"], [13, "id7"], [13, "id9"], [13, "id11"], [16, "returns"], [16, "id1"], [16, "id3"], [16, "id5"], [16, "id7"], [16, "id9"], [16, "id11"], [16, "id13"], [17, "returns"], [22, "returns"], [24, "returns"], [24, "id1"], [24, "id3"], [24, "id5"], [24, "id7"], [24, "id11"], [24, "id13"], [25, "returns"], [25, "id2"], [25, "id4"], [25, "id6"], [25, "id8"], [25, "id10"], [25, "id14"], [25, "id16"], [25, "id18"], [26, "returns"], [26, "id2"], [26, "id4"], [26, "id6"], [26, "id8"], [26, "id10"], [26, "id14"], [26, "id16"], [26, "id18"], [27, "returns"], [29, "returns"], [29, "id2"], [29, "id4"], [29, "id6"], [29, "id7"], [29, "id9"], [29, "id10"], [29, "id11"], [29, "id12"], [29, "id13"], [29, "id15"], [29, "id17"], [29, "id19"], [30, "returns"], [31, "returns"], [32, "returns"], [34, "returns"], [35, "returns"], [36, "returns"], [37, "returns"], [39, "returns"], [39, "id1"], [39, "id3"], [39, "id5"], [39, "id7"], [39, "id9"], [39, "id11"], [39, "id13"], [39, "id15"], [39, "id17"], [40, "returns"], [42, "returns"], [42, "id1"], [42, "id3"], [42, "id4"], [47, "returns"], [47, "id1"], [47, "id3"], [47, "id5"], [49, "returns"], [52, "returns"], [52, "id3"], [52, "id4"], [52, "id6"], [52, "id8"], [52, "id10"], [52, "id12"], [52, "id16"], [52, "id18"], [55, "returns"], [55, "id2"], [55, "id4"], [55, "id6"], [55, "id9"], [55, "id13"], [55, "id15"], [55, "id17"], [58, "returns"], [60, "returns"], [60, "id1"], [60, "id2"], [60, "id3"], [60, "id5"], [60, "id7"], [60, "id9"], [60, "id11"], [60, "id13"], [60, "id15"], [60, "id17"], [60, "id19"], [60, "id21"], [61, "returns"], [62, "returns"], [63, "returns"]], "See also": [[71, "see-also"]], "Sequential training": [[81, "sequential-training"]], "Set the experimental design": [[81, "set-the-experimental-design"]], "Surrogate": [[65, "surrogate"], [68, "surrogate"], [69, "surrogate"], [73, "surrogate"], [76, "surrogate"], [78, "surrogate"]], "Surrogate-assisted\u00a0Bayesian validation of computational models": [[71, "surrogate-assisted-bayesian-validation-of-computational-models"]], "Surrogates 1-3": [[75, "surrogates-1-3"]], "TUTORIAL": [[81, "tutorial"]], "Train the surrogate with an engine": [[81, "train-the-surrogate-with-an-engine"]], "Training choices": [[65, "id5"], [68, "id5"], [69, "id4"], [73, "id4"], [75, "id8"], [76, "id4"], [78, "id4"]], "Training surrogate models": [[80, "training-surrogate-models"]], "Training with the engine": [[80, "training-with-the-engine"]], "USER GUIDE": [[77, "user-guide"]], "bayesvalidrox": [[0, "module-bayesvalidrox"]], "bayesvalidrox.bayes_inference": [[1, "module-bayesvalidrox.bayes_inference"]], "bayesvalidrox.bayes_inference.bayes_inference": [[2, "module-bayesvalidrox.bayes_inference.bayes_inference"]], "bayesvalidrox.bayes_inference.bayes_inference.BayesInference": [[3, "bayesvalidrox-bayes-inference-bayes-inference-bayesinference"]], "bayesvalidrox.bayes_inference.bayes_model_comparison": [[4, "module-bayesvalidrox.bayes_inference.bayes_model_comparison"]], "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison": [[5, "bayesvalidrox-bayes-inference-bayes-model-comparison-bayesmodelcomparison"]], "bayesvalidrox.bayes_inference.discrepancy": [[6, "module-bayesvalidrox.bayes_inference.discrepancy"]], "bayesvalidrox.bayes_inference.discrepancy.Discrepancy": [[7, "bayesvalidrox-bayes-inference-discrepancy-discrepancy"]], "bayesvalidrox.bayes_inference.mcmc": [[8, "module-bayesvalidrox.bayes_inference.mcmc"]], "bayesvalidrox.bayes_inference.mcmc.MCMC": [[9, "bayesvalidrox-bayes-inference-mcmc-mcmc"]], "bayesvalidrox.bayes_inference.mcmc.gelman_rubin": [[10, "bayesvalidrox-bayes-inference-mcmc-gelman-rubin"]], "bayesvalidrox.post_processing": [[11, "module-bayesvalidrox.post_processing"]], "bayesvalidrox.post_processing.post_processing": [[12, "module-bayesvalidrox.post_processing.post_processing"]], "bayesvalidrox.post_processing.post_processing.PostProcessing": [[13, "bayesvalidrox-post-processing-post-processing-postprocessing"]], "bayesvalidrox.pylink": [[14, "module-bayesvalidrox.pylink"]], "bayesvalidrox.pylink.pylink": [[15, "module-bayesvalidrox.pylink.pylink"]], "bayesvalidrox.pylink.pylink.PyLinkForwardModel": [[16, "bayesvalidrox-pylink-pylink-pylinkforwardmodel"]], "bayesvalidrox.pylink.pylink.within_range": [[17, "bayesvalidrox-pylink-pylink-within-range"]], "bayesvalidrox.surrogate_models": [[18, "module-bayesvalidrox.surrogate_models"]], "bayesvalidrox.surrogate_models.adaptPlot": [[19, "module-bayesvalidrox.surrogate_models.adaptPlot"]], "bayesvalidrox.surrogate_models.adaptPlot.adaptPlot": [[20, "bayesvalidrox-surrogate-models-adaptplot-adaptplot"]], "bayesvalidrox.surrogate_models.apoly_construction": [[21, "module-bayesvalidrox.surrogate_models.apoly_construction"]], "bayesvalidrox.surrogate_models.apoly_construction.apoly_construction": [[22, "bayesvalidrox-surrogate-models-apoly-construction-apoly-construction"]], "bayesvalidrox.surrogate_models.bayes_linear": [[23, "module-bayesvalidrox.surrogate_models.bayes_linear"]], "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression": [[24, "bayesvalidrox-surrogate-models-bayes-linear-bayesianlinearregression"]], "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression": [[25, "bayesvalidrox-surrogate-models-bayes-linear-eblinearregression"]], "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression": [[26, "bayesvalidrox-surrogate-models-bayes-linear-vblinearregression"]], "bayesvalidrox.surrogate_models.bayes_linear.gamma_mean": [[27, "bayesvalidrox-surrogate-models-bayes-linear-gamma-mean"]], "bayesvalidrox.surrogate_models.engine": [[28, "module-bayesvalidrox.surrogate_models.engine"]], "bayesvalidrox.surrogate_models.engine.Engine": [[29, "bayesvalidrox-surrogate-models-engine-engine"]], "bayesvalidrox.surrogate_models.engine.hellinger_distance": [[30, "bayesvalidrox-surrogate-models-engine-hellinger-distance"]], "bayesvalidrox.surrogate_models.engine.logpdf": [[31, "bayesvalidrox-surrogate-models-engine-logpdf"]], "bayesvalidrox.surrogate_models.engine.subdomain": [[32, "bayesvalidrox-surrogate-models-engine-subdomain"]], "bayesvalidrox.surrogate_models.eval_rec_rule": [[33, "module-bayesvalidrox.surrogate_models.eval_rec_rule"]], "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule": [[34, "bayesvalidrox-surrogate-models-eval-rec-rule-eval-rec-rule"]], "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule_arbitrary": [[35, "bayesvalidrox-surrogate-models-eval-rec-rule-eval-rec-rule-arbitrary"]], "bayesvalidrox.surrogate_models.eval_rec_rule.eval_univ_basis": [[36, "bayesvalidrox-surrogate-models-eval-rec-rule-eval-univ-basis"]], "bayesvalidrox.surrogate_models.eval_rec_rule.poly_rec_coeffs": [[37, "bayesvalidrox-surrogate-models-eval-rec-rule-poly-rec-coeffs"]], "bayesvalidrox.surrogate_models.exp_designs": [[38, "module-bayesvalidrox.surrogate_models.exp_designs"]], "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns": [[39, "bayesvalidrox-surrogate-models-exp-designs-expdesigns"]], "bayesvalidrox.surrogate_models.exp_designs.check_ranges": [[40, "bayesvalidrox-surrogate-models-exp-designs-check-ranges"]], "bayesvalidrox.surrogate_models.exploration": [[41, "module-bayesvalidrox.surrogate_models.exploration"]], "bayesvalidrox.surrogate_models.exploration.Exploration": [[42, "bayesvalidrox-surrogate-models-exploration-exploration"]], "bayesvalidrox.surrogate_models.glexindex": [[43, "module-bayesvalidrox.surrogate_models.glexindex"]], "bayesvalidrox.surrogate_models.glexindex.cross_truncate": [[44, "bayesvalidrox-surrogate-models-glexindex-cross-truncate"]], "bayesvalidrox.surrogate_models.glexindex.glexindex": [[45, "bayesvalidrox-surrogate-models-glexindex-glexindex"]], "bayesvalidrox.surrogate_models.input_space": [[46, "module-bayesvalidrox.surrogate_models.input_space"]], "bayesvalidrox.surrogate_models.input_space.InputSpace": [[47, "bayesvalidrox-surrogate-models-input-space-inputspace"]], "bayesvalidrox.surrogate_models.inputs": [[48, "module-bayesvalidrox.surrogate_models.inputs"]], "bayesvalidrox.surrogate_models.inputs.Input": [[49, "bayesvalidrox-surrogate-models-inputs-input"]], "bayesvalidrox.surrogate_models.inputs.Marginal": [[50, "bayesvalidrox-surrogate-models-inputs-marginal"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit": [[51, "module-bayesvalidrox.surrogate_models.orthogonal_matching_pursuit"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit": [[52, "bayesvalidrox-surrogate-models-orthogonal-matching-pursuit-orthogonalmatchingpursuit"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.corr": [[53, "bayesvalidrox-surrogate-models-orthogonal-matching-pursuit-corr"]], "bayesvalidrox.surrogate_models.reg_fast_ard": [[54, "module-bayesvalidrox.surrogate_models.reg_fast_ard"]], "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD": [[55, "bayesvalidrox-surrogate-models-reg-fast-ard-regressionfastard"]], "bayesvalidrox.surrogate_models.reg_fast_ard.update_precisions": [[56, "bayesvalidrox-surrogate-models-reg-fast-ard-update-precisions"]], "bayesvalidrox.surrogate_models.reg_fast_laplace": [[57, "module-bayesvalidrox.surrogate_models.reg_fast_laplace"]], "bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace": [[58, "bayesvalidrox-surrogate-models-reg-fast-laplace-regressionfastlaplace"]], "bayesvalidrox.surrogate_models.surrogate_models": [[59, "module-bayesvalidrox.surrogate_models.surrogate_models"]], "bayesvalidrox.surrogate_models.surrogate_models.MetaModel": [[60, "bayesvalidrox-surrogate-models-surrogate-models-metamodel"]], "bayesvalidrox.surrogate_models.surrogate_models.corr_loocv_error": [[61, "bayesvalidrox-surrogate-models-surrogate-models-corr-loocv-error"]], "bayesvalidrox.surrogate_models.surrogate_models.create_psi": [[62, "bayesvalidrox-surrogate-models-surrogate-models-create-psi"]], "bayesvalidrox.surrogate_models.surrogate_models.gaussian_process_emulator": [[63, "bayesvalidrox-surrogate-models-surrogate-models-gaussian-process-emulator"]]}, "docnames": ["_autosummary/bayesvalidrox", "_autosummary/bayesvalidrox.bayes_inference", "_autosummary/bayesvalidrox.bayes_inference.bayes_inference", "_autosummary/bayesvalidrox.bayes_inference.bayes_inference.BayesInference", "_autosummary/bayesvalidrox.bayes_inference.bayes_model_comparison", "_autosummary/bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison", "_autosummary/bayesvalidrox.bayes_inference.discrepancy", "_autosummary/bayesvalidrox.bayes_inference.discrepancy.Discrepancy", "_autosummary/bayesvalidrox.bayes_inference.mcmc", "_autosummary/bayesvalidrox.bayes_inference.mcmc.MCMC", "_autosummary/bayesvalidrox.bayes_inference.mcmc.gelman_rubin", "_autosummary/bayesvalidrox.post_processing", "_autosummary/bayesvalidrox.post_processing.post_processing", "_autosummary/bayesvalidrox.post_processing.post_processing.PostProcessing", "_autosummary/bayesvalidrox.pylink", "_autosummary/bayesvalidrox.pylink.pylink", "_autosummary/bayesvalidrox.pylink.pylink.PyLinkForwardModel", "_autosummary/bayesvalidrox.pylink.pylink.within_range", "_autosummary/bayesvalidrox.surrogate_models", "_autosummary/bayesvalidrox.surrogate_models.adaptPlot", "_autosummary/bayesvalidrox.surrogate_models.adaptPlot.adaptPlot", "_autosummary/bayesvalidrox.surrogate_models.apoly_construction", "_autosummary/bayesvalidrox.surrogate_models.apoly_construction.apoly_construction", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.gamma_mean", "_autosummary/bayesvalidrox.surrogate_models.engine", "_autosummary/bayesvalidrox.surrogate_models.engine.Engine", "_autosummary/bayesvalidrox.surrogate_models.engine.hellinger_distance", "_autosummary/bayesvalidrox.surrogate_models.engine.logpdf", "_autosummary/bayesvalidrox.surrogate_models.engine.subdomain", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule_arbitrary", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_univ_basis", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.poly_rec_coeffs", "_autosummary/bayesvalidrox.surrogate_models.exp_designs", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.ExpDesigns", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.check_ranges", "_autosummary/bayesvalidrox.surrogate_models.exploration", "_autosummary/bayesvalidrox.surrogate_models.exploration.Exploration", "_autosummary/bayesvalidrox.surrogate_models.glexindex", "_autosummary/bayesvalidrox.surrogate_models.glexindex.cross_truncate", "_autosummary/bayesvalidrox.surrogate_models.glexindex.glexindex", "_autosummary/bayesvalidrox.surrogate_models.input_space", "_autosummary/bayesvalidrox.surrogate_models.input_space.InputSpace", "_autosummary/bayesvalidrox.surrogate_models.inputs", "_autosummary/bayesvalidrox.surrogate_models.inputs.Input", "_autosummary/bayesvalidrox.surrogate_models.inputs.Marginal", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.corr", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.update_precisions", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_laplace", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.MetaModel", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.corr_loocv_error", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.create_psi", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.gaussian_process_emulator", "al_description", "analyticalfunction", "api", "bayes_description", "beam", "borehole", "examples", "index", "input_description", "ishigami", "model_description", "modelcomparison", "ohaganfunction", "packagedescription", "pollution", "post_description", "surrogate_description", "tutorial"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["_autosummary/bayesvalidrox.rst", "_autosummary/bayesvalidrox.bayes_inference.rst", "_autosummary/bayesvalidrox.bayes_inference.bayes_inference.rst", "_autosummary/bayesvalidrox.bayes_inference.bayes_inference.BayesInference.rst", "_autosummary/bayesvalidrox.bayes_inference.bayes_model_comparison.rst", "_autosummary/bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.rst", "_autosummary/bayesvalidrox.bayes_inference.discrepancy.rst", "_autosummary/bayesvalidrox.bayes_inference.discrepancy.Discrepancy.rst", "_autosummary/bayesvalidrox.bayes_inference.mcmc.rst", "_autosummary/bayesvalidrox.bayes_inference.mcmc.MCMC.rst", "_autosummary/bayesvalidrox.bayes_inference.mcmc.gelman_rubin.rst", "_autosummary/bayesvalidrox.post_processing.rst", "_autosummary/bayesvalidrox.post_processing.post_processing.rst", "_autosummary/bayesvalidrox.post_processing.post_processing.PostProcessing.rst", "_autosummary/bayesvalidrox.pylink.rst", "_autosummary/bayesvalidrox.pylink.pylink.rst", "_autosummary/bayesvalidrox.pylink.pylink.PyLinkForwardModel.rst", "_autosummary/bayesvalidrox.pylink.pylink.within_range.rst", "_autosummary/bayesvalidrox.surrogate_models.rst", "_autosummary/bayesvalidrox.surrogate_models.adaptPlot.rst", "_autosummary/bayesvalidrox.surrogate_models.adaptPlot.adaptPlot.rst", "_autosummary/bayesvalidrox.surrogate_models.apoly_construction.rst", "_autosummary/bayesvalidrox.surrogate_models.apoly_construction.apoly_construction.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.gamma_mean.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.Engine.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.hellinger_distance.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.logpdf.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.subdomain.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule_arbitrary.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_univ_basis.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.poly_rec_coeffs.rst", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.rst", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.rst", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.check_ranges.rst", "_autosummary/bayesvalidrox.surrogate_models.exploration.rst", "_autosummary/bayesvalidrox.surrogate_models.exploration.Exploration.rst", "_autosummary/bayesvalidrox.surrogate_models.glexindex.rst", "_autosummary/bayesvalidrox.surrogate_models.glexindex.cross_truncate.rst", "_autosummary/bayesvalidrox.surrogate_models.glexindex.glexindex.rst", "_autosummary/bayesvalidrox.surrogate_models.input_space.rst", "_autosummary/bayesvalidrox.surrogate_models.input_space.InputSpace.rst", "_autosummary/bayesvalidrox.surrogate_models.inputs.rst", "_autosummary/bayesvalidrox.surrogate_models.inputs.Input.rst", "_autosummary/bayesvalidrox.surrogate_models.inputs.Marginal.rst", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.rst", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.rst", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.corr.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.update_precisions.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_laplace.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.MetaModel.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.corr_loocv_error.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.create_psi.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.gaussian_process_emulator.rst", "al_description.rst", "analyticalfunction.rst", "api.rst", "bayes_description.rst", "beam.rst", "borehole.rst", "examples.rst", "index.rst", "input_description.rst", "ishigami.rst", "model_description.rst", "modelcomparison.rst", "ohaganfunction.rst", "packagedescription.rst", "pollution.rst", "post_description.rst", "surrogate_description.rst", "tutorial.rst"], "indexentries": {"__init__() (bayesvalidrox.bayes_inference.bayes_inference.bayesinference method)": [[3, "bayesvalidrox.bayes_inference.bayes_inference.BayesInference.__init__", false]], "__init__() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.__init__", false]], "__init__() (bayesvalidrox.bayes_inference.discrepancy.discrepancy method)": [[7, "bayesvalidrox.bayes_inference.discrepancy.Discrepancy.__init__", false]], "__init__() (bayesvalidrox.bayes_inference.mcmc.mcmc method)": [[9, "bayesvalidrox.bayes_inference.mcmc.MCMC.__init__", false]], "__init__() (bayesvalidrox.post_processing.post_processing.postprocessing method)": [[13, "bayesvalidrox.post_processing.post_processing.PostProcessing.__init__", false]], "__init__() (bayesvalidrox.pylink.pylink.pylinkforwardmodel method)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.bayes_linear.bayesianlinearregression method)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.exploration.exploration method)": [[42, "bayesvalidrox.surrogate_models.exploration.Exploration.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.input_space.inputspace method)": [[47, "bayesvalidrox.surrogate_models.input_space.InputSpace.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.inputs.input method)": [[49, "bayesvalidrox.surrogate_models.inputs.Input.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.inputs.marginal method)": [[50, "bayesvalidrox.surrogate_models.inputs.Marginal.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.reg_fast_laplace.regressionfastlaplace method)": [[58, "bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace.__init__", false]], "__init__() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.__init__", false]], "adaptive_regression() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.adaptive_regression", false]], "adaptplot() (in module bayesvalidrox.surrogate_models.adaptplot)": [[20, "bayesvalidrox.surrogate_models.adaptPlot.adaptPlot", false]], "add_inputspace() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.add_InputSpace", false]], "add_marginals() (bayesvalidrox.surrogate_models.inputs.input method)": [[49, "bayesvalidrox.surrogate_models.inputs.Input.add_marginals", false]], "apoly_construction() (in module bayesvalidrox.surrogate_models.apoly_construction)": [[22, "bayesvalidrox.surrogate_models.apoly_construction.apoly_construction", false]], "approximate_voronoi() (bayesvalidrox.surrogate_models.exploration.exploration method)": [[42, "bayesvalidrox.surrogate_models.exploration.Exploration.approximate_voronoi", false]], "bayesianlinearregression (class in bayesvalidrox.surrogate_models.bayes_linear)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression", false]], "bayesinference (class in bayesvalidrox.bayes_inference.bayes_inference)": [[3, "bayesvalidrox.bayes_inference.bayes_inference.BayesInference", false]], "bayesmodelcomparison (class in bayesvalidrox.bayes_inference.bayes_model_comparison)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison", false]], "bayesvalidrox": [[0, "module-bayesvalidrox", false]], "bayesvalidrox.bayes_inference": [[1, "module-bayesvalidrox.bayes_inference", false]], "bayesvalidrox.bayes_inference.bayes_inference": [[2, "module-bayesvalidrox.bayes_inference.bayes_inference", false]], "bayesvalidrox.bayes_inference.bayes_model_comparison": [[4, "module-bayesvalidrox.bayes_inference.bayes_model_comparison", false]], "bayesvalidrox.bayes_inference.discrepancy": [[6, "module-bayesvalidrox.bayes_inference.discrepancy", false]], "bayesvalidrox.bayes_inference.mcmc": [[8, "module-bayesvalidrox.bayes_inference.mcmc", false]], "bayesvalidrox.post_processing": [[11, "module-bayesvalidrox.post_processing", false]], "bayesvalidrox.post_processing.post_processing": [[12, "module-bayesvalidrox.post_processing.post_processing", false]], "bayesvalidrox.pylink": [[14, "module-bayesvalidrox.pylink", false]], "bayesvalidrox.pylink.pylink": [[15, "module-bayesvalidrox.pylink.pylink", false]], "bayesvalidrox.surrogate_models": [[18, "module-bayesvalidrox.surrogate_models", false]], "bayesvalidrox.surrogate_models.adaptplot": [[19, "module-bayesvalidrox.surrogate_models.adaptPlot", false]], "bayesvalidrox.surrogate_models.apoly_construction": [[21, "module-bayesvalidrox.surrogate_models.apoly_construction", false]], "bayesvalidrox.surrogate_models.bayes_linear": [[23, "module-bayesvalidrox.surrogate_models.bayes_linear", false]], "bayesvalidrox.surrogate_models.engine": [[28, "module-bayesvalidrox.surrogate_models.engine", false]], "bayesvalidrox.surrogate_models.eval_rec_rule": [[33, "module-bayesvalidrox.surrogate_models.eval_rec_rule", false]], "bayesvalidrox.surrogate_models.exp_designs": [[38, "module-bayesvalidrox.surrogate_models.exp_designs", false]], "bayesvalidrox.surrogate_models.exploration": [[41, "module-bayesvalidrox.surrogate_models.exploration", false]], "bayesvalidrox.surrogate_models.glexindex": [[43, "module-bayesvalidrox.surrogate_models.glexindex", false]], "bayesvalidrox.surrogate_models.input_space": [[46, "module-bayesvalidrox.surrogate_models.input_space", false]], "bayesvalidrox.surrogate_models.inputs": [[48, "module-bayesvalidrox.surrogate_models.inputs", false]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit": [[51, "module-bayesvalidrox.surrogate_models.orthogonal_matching_pursuit", false]], "bayesvalidrox.surrogate_models.reg_fast_ard": [[54, "module-bayesvalidrox.surrogate_models.reg_fast_ard", false]], "bayesvalidrox.surrogate_models.reg_fast_laplace": [[57, "module-bayesvalidrox.surrogate_models.reg_fast_laplace", false]], "bayesvalidrox.surrogate_models.surrogate_models": [[59, "module-bayesvalidrox.surrogate_models.surrogate_models", false]], "blockwise_inverse() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.blockwise_inverse", false]], "build_metamodel() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.build_metamodel", false]], "build_polytypes() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.build_polytypes", false]], "build_polytypes() (bayesvalidrox.surrogate_models.input_space.inputspace method)": [[47, "bayesvalidrox.surrogate_models.input_space.InputSpace.build_polytypes", false]], "cal_model_weight() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.cal_model_weight", false]], "calc_bayes_factors() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.calc_bayes_factors", false]], "calc_justifiability_analysis() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.calc_justifiability_analysis", false]], "calc_model_weights() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.calc_model_weights", false]], "check_accuracy() (bayesvalidrox.post_processing.post_processing.postprocessing method)": [[13, "bayesvalidrox.post_processing.post_processing.PostProcessing.check_accuracy", false]], "check_ranges() (in module bayesvalidrox.surrogate_models.exp_designs)": [[40, "bayesvalidrox.surrogate_models.exp_designs.check_ranges", false]], "check_reg_quality() (bayesvalidrox.post_processing.post_processing.postprocessing method)": [[13, "bayesvalidrox.post_processing.post_processing.PostProcessing.check_reg_quality", false]], "check_valid_inputs() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.check_valid_inputs", false]], "check_valid_inputs() (bayesvalidrox.surrogate_models.input_space.inputspace method)": [[47, "bayesvalidrox.surrogate_models.input_space.InputSpace.check_valid_inputs", false]], "choose_next_sample() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.choose_next_sample", false]], "clear() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.clear", false]], "compute_pce_moments() (bayesvalidrox.post_processing.post_processing.postprocessing method)": [[13, "bayesvalidrox.post_processing.post_processing.PostProcessing.compute_pce_moments", false]], "copy() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.copy", false]], "copy_meta_model_opts() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.copy_meta_model_opts", false]], "corr() (in module bayesvalidrox.surrogate_models.orthogonal_matching_pursuit)": [[53, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.corr", false]], "corr_loocv_error() (in module bayesvalidrox.surrogate_models.surrogate_models)": [[61, "bayesvalidrox.surrogate_models.surrogate_models.corr_loocv_error", false]], "create_error_model() (bayesvalidrox.bayes_inference.bayes_inference.bayesinference method)": [[3, "bayesvalidrox.bayes_inference.bayes_inference.BayesInference.create_error_model", false]], "create_inference() (bayesvalidrox.bayes_inference.bayes_inference.bayesinference method)": [[3, "bayesvalidrox.bayes_inference.bayes_inference.BayesInference.create_inference", false]], "create_model_error() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.create_model_error", false]], "create_psi() (in module bayesvalidrox.surrogate_models.surrogate_models)": [[62, "bayesvalidrox.surrogate_models.surrogate_models.create_psi", false]], "cross_truncate() (in module bayesvalidrox.surrogate_models.glexindex)": [[44, "bayesvalidrox.surrogate_models.glexindex.cross_truncate", false]], "discrepancy (class in bayesvalidrox.bayes_inference.discrepancy)": [[7, "bayesvalidrox.bayes_inference.discrepancy.Discrepancy", false]], "dual_annealing() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.dual_annealing", false]], "eblinearregression (class in bayesvalidrox.surrogate_models.bayes_linear)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression", false]], "engine (class in bayesvalidrox.surrogate_models.engine)": [[29, "bayesvalidrox.surrogate_models.engine.Engine", false]], "eval_metamodel() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.eval_metamodel", false]], "eval_metamodel() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.eval_metamodel", false]], "eval_model() (bayesvalidrox.bayes_inference.mcmc.mcmc method)": [[9, "bayesvalidrox.bayes_inference.mcmc.MCMC.eval_model", false]], "eval_model_error() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.eval_model_error", false]], "eval_rec_rule() (in module bayesvalidrox.surrogate_models.eval_rec_rule)": [[34, "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule", false]], "eval_rec_rule_arbitrary() (in module bayesvalidrox.surrogate_models.eval_rec_rule)": [[35, "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule_arbitrary", false]], "eval_univ_basis() (in module bayesvalidrox.surrogate_models.eval_rec_rule)": [[36, "bayesvalidrox.surrogate_models.eval_rec_rule.eval_univ_basis", false]], "expdesigns (class in bayesvalidrox.surrogate_models.exp_designs)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns", false]], "exploration (class in bayesvalidrox.surrogate_models.exploration)": [[42, "bayesvalidrox.surrogate_models.exploration.Exploration", false]], "fit() (bayesvalidrox.surrogate_models.bayes_linear.bayesianlinearregression method)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.fit", false]], "fit() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.fit", false]], "fit() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.fit", false]], "fit() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.fit", false]], "fit() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.fit", false]], "fit() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.fit", false]], "fromkeys() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.fromkeys", false]], "gamma_mean() (in module bayesvalidrox.surrogate_models.bayes_linear)": [[27, "bayesvalidrox.surrogate_models.bayes_linear.gamma_mean", false]], "gaussian_process_emulator() (in module bayesvalidrox.surrogate_models.surrogate_models)": [[63, "bayesvalidrox.surrogate_models.surrogate_models.gaussian_process_emulator", false]], "gelman_rubin() (in module bayesvalidrox.bayes_inference.mcmc)": [[10, "bayesvalidrox.bayes_inference.mcmc.gelman_rubin", false]], "generate_dataset() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.generate_dataset", false]], "generate_ed() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.generate_ED", false]], "generate_polynomials() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.generate_polynomials", false]], "generate_samples() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.generate_samples", false]], "get() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.get", false]], "get_exploration_samples() (bayesvalidrox.surrogate_models.exploration.exploration method)": [[42, "bayesvalidrox.surrogate_models.exploration.Exploration.get_exploration_samples", false]], "get_mc_samples() (bayesvalidrox.surrogate_models.exploration.exploration method)": [[42, "bayesvalidrox.surrogate_models.exploration.Exploration.get_mc_samples", false]], "get_metadata_routing() (bayesvalidrox.surrogate_models.bayes_linear.bayesianlinearregression method)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.get_metadata_routing", false]], "get_metadata_routing() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.get_metadata_routing", false]], "get_metadata_routing() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.get_metadata_routing", false]], "get_metadata_routing() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.get_metadata_routing", false]], "get_metadata_routing() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.get_metadata_routing", false]], "get_params() (bayesvalidrox.surrogate_models.bayes_linear.bayesianlinearregression method)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.get_params", false]], "get_params() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.get_params", false]], "get_params() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.get_params", false]], "get_params() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.get_params", false]], "get_params() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.get_params", false]], "get_sample() (bayesvalidrox.bayes_inference.discrepancy.discrepancy method)": [[7, "bayesvalidrox.bayes_inference.discrepancy.Discrepancy.get_sample", false]], "get_vornoi_samples() (bayesvalidrox.surrogate_models.exploration.exploration method)": [[42, "bayesvalidrox.surrogate_models.exploration.Exploration.get_vornoi_samples", false]], "glexindex() (in module bayesvalidrox.surrogate_models.glexindex)": [[45, "bayesvalidrox.surrogate_models.glexindex.glexindex", false]], "hellinger_distance() (in module bayesvalidrox.surrogate_models.engine)": [[30, "bayesvalidrox.surrogate_models.engine.hellinger_distance", false]], "init_param_space() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.init_param_space", false]], "init_param_space() (bayesvalidrox.surrogate_models.input_space.inputspace method)": [[47, "bayesvalidrox.surrogate_models.input_space.InputSpace.init_param_space", false]], "input (class in bayesvalidrox.surrogate_models.inputs)": [[49, "bayesvalidrox.surrogate_models.inputs.Input", false]], "inputspace (class in bayesvalidrox.surrogate_models.input_space)": [[47, "bayesvalidrox.surrogate_models.input_space.InputSpace", false]], "items() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.items", false]], "keys() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.keys", false]], "log_likelihood() (bayesvalidrox.bayes_inference.mcmc.mcmc method)": [[9, "bayesvalidrox.bayes_inference.mcmc.MCMC.log_likelihood", false]], "log_marginal_like() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.log_marginal_like", false]], "log_posterior() (bayesvalidrox.bayes_inference.mcmc.mcmc method)": [[9, "bayesvalidrox.bayes_inference.mcmc.MCMC.log_posterior", false]], "log_prior() (bayesvalidrox.bayes_inference.mcmc.mcmc method)": [[9, "bayesvalidrox.bayes_inference.mcmc.MCMC.log_prior", false]], "logpdf() (in module bayesvalidrox.surrogate_models.engine)": [[31, "bayesvalidrox.surrogate_models.engine.logpdf", false]], "loo_error() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.loo_error", false]], "marginal (class in bayesvalidrox.surrogate_models.inputs)": [[50, "bayesvalidrox.surrogate_models.inputs.Marginal", false]], "mcmc (class in bayesvalidrox.bayes_inference.mcmc)": [[9, "bayesvalidrox.bayes_inference.mcmc.MCMC", false]], "metamodel (class in bayesvalidrox.surrogate_models.surrogate_models)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel", false]], "metamodel.auto_vivification (class in bayesvalidrox.surrogate_models.surrogate_models)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification", false]], "model_comparison_all() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.model_comparison_all", false]], "module": [[0, "module-bayesvalidrox", false], [1, "module-bayesvalidrox.bayes_inference", false], [2, "module-bayesvalidrox.bayes_inference.bayes_inference", false], [4, "module-bayesvalidrox.bayes_inference.bayes_model_comparison", false], [6, "module-bayesvalidrox.bayes_inference.discrepancy", false], [8, "module-bayesvalidrox.bayes_inference.mcmc", false], [11, "module-bayesvalidrox.post_processing", false], [12, "module-bayesvalidrox.post_processing.post_processing", false], [14, "module-bayesvalidrox.pylink", false], [15, "module-bayesvalidrox.pylink.pylink", false], [18, "module-bayesvalidrox.surrogate_models", false], [19, "module-bayesvalidrox.surrogate_models.adaptPlot", false], [21, "module-bayesvalidrox.surrogate_models.apoly_construction", false], [23, "module-bayesvalidrox.surrogate_models.bayes_linear", false], [28, "module-bayesvalidrox.surrogate_models.engine", false], [33, "module-bayesvalidrox.surrogate_models.eval_rec_rule", false], [38, "module-bayesvalidrox.surrogate_models.exp_designs", false], [41, "module-bayesvalidrox.surrogate_models.exploration", false], [43, "module-bayesvalidrox.surrogate_models.glexindex", false], [46, "module-bayesvalidrox.surrogate_models.input_space", false], [48, "module-bayesvalidrox.surrogate_models.inputs", false], [51, "module-bayesvalidrox.surrogate_models.orthogonal_matching_pursuit", false], [54, "module-bayesvalidrox.surrogate_models.reg_fast_ard", false], [57, "module-bayesvalidrox.surrogate_models.reg_fast_laplace", false], [59, "module-bayesvalidrox.surrogate_models.surrogate_models", false]], "normpdf() (bayesvalidrox.bayes_inference.bayes_inference.bayesinference method)": [[3, "bayesvalidrox.bayes_inference.bayes_inference.BayesInference.normpdf", false]], "normpdf() (bayesvalidrox.bayes_inference.mcmc.mcmc method)": [[9, "bayesvalidrox.bayes_inference.mcmc.MCMC.normpdf", false]], "orthogonalmatchingpursuit (class in bayesvalidrox.surrogate_models.orthogonal_matching_pursuit)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit", false]], "pca_transformation() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.pca_transformation", false]], "pcm_sampler() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.pcm_sampler", false]], "perform_bootstrap() (bayesvalidrox.bayes_inference.bayes_inference.bayesinference method)": [[3, "bayesvalidrox.bayes_inference.bayes_inference.BayesInference.perform_bootstrap", false]], "plot_bayes_factor() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.plot_bayes_factor", false]], "plot_just_analysis() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.plot_just_analysis", false]], "plot_log_bme() (bayesvalidrox.bayes_inference.bayes_inference.bayesinference method)": [[3, "bayesvalidrox.bayes_inference.bayes_inference.BayesInference.plot_log_BME", false]], "plot_model_weights() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.plot_model_weights", false]], "plot_moments() (bayesvalidrox.post_processing.post_processing.postprocessing method)": [[13, "bayesvalidrox.post_processing.post_processing.PostProcessing.plot_moments", false]], "plot_post_params() (bayesvalidrox.bayes_inference.bayes_inference.bayesinference method)": [[3, "bayesvalidrox.bayes_inference.bayes_inference.BayesInference.plot_post_params", false]], "plot_samples() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.plot_samples", false]], "plot_seq_design_diagnostics() (bayesvalidrox.post_processing.post_processing.postprocessing method)": [[13, "bayesvalidrox.post_processing.post_processing.PostProcessing.plot_seq_design_diagnostics", false]], "poly_rec_coeffs() (in module bayesvalidrox.surrogate_models.eval_rec_rule)": [[37, "bayesvalidrox.surrogate_models.eval_rec_rule.poly_rec_coeffs", false]], "pop() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.pop", false]], "popitem() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.popitem", false]], "postprocessing (class in bayesvalidrox.post_processing.post_processing)": [[13, "bayesvalidrox.post_processing.post_processing.PostProcessing", false]], "predict() (bayesvalidrox.surrogate_models.bayes_linear.bayesianlinearregression method)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.predict", false]], "predict() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.predict", false]], "predict() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.predict", false]], "predict() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.predict", false]], "predict() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.predict", false]], "predict() (bayesvalidrox.surrogate_models.reg_fast_laplace.regressionfastlaplace method)": [[58, "bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace.predict", false]], "predict_dist() (bayesvalidrox.surrogate_models.bayes_linear.bayesianlinearregression method)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.predict_dist", false]], "predict_dist() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.predict_dist", false]], "predict_dist() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.predict_dist", false]], "pylinkforwardmodel (class in bayesvalidrox.pylink.pylink)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel", false]], "pylinkforwardmodel.outputdata (class in bayesvalidrox.pylink.pylink)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.OutputData", false]], "random_sampler() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.random_sampler", false]], "read_from_file() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.read_from_file", false]], "read_observation() (bayesvalidrox.pylink.pylink.pylinkforwardmodel method)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.read_observation", false]], "read_output() (bayesvalidrox.pylink.pylink.pylinkforwardmodel method)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.read_output", false]], "regression() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.regression", false]], "regressionfastard (class in bayesvalidrox.surrogate_models.reg_fast_ard)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD", false]], "regressionfastlaplace (class in bayesvalidrox.surrogate_models.reg_fast_laplace)": [[58, "bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace", false]], "run_command() (bayesvalidrox.pylink.pylink.pylinkforwardmodel method)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.run_command", false]], "run_forwardmodel() (bayesvalidrox.pylink.pylink.pylinkforwardmodel method)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.run_forwardmodel", false]], "run_model_parallel() (bayesvalidrox.pylink.pylink.pylinkforwardmodel method)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.run_model_parallel", false]], "run_sampler() (bayesvalidrox.bayes_inference.mcmc.mcmc method)": [[9, "bayesvalidrox.bayes_inference.mcmc.MCMC.run_sampler", false]], "run_util_func() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.run_util_func", false]], "score() (bayesvalidrox.surrogate_models.bayes_linear.bayesianlinearregression method)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.score", false]], "score() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.score", false]], "score() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.score", false]], "score() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.score", false]], "score() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.score", false]], "set_params() (bayesvalidrox.surrogate_models.bayes_linear.bayesianlinearregression method)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.set_params", false]], "set_params() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.set_params", false]], "set_params() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.set_params", false]], "set_params() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.set_params", false]], "set_params() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.set_params", false]], "set_predict_request() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.set_predict_request", false]], "set_predict_request() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.set_predict_request", false]], "set_predict_request() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.set_predict_request", false]], "set_score_request() (bayesvalidrox.surrogate_models.bayes_linear.bayesianlinearregression method)": [[24, "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.set_score_request", false]], "set_score_request() (bayesvalidrox.surrogate_models.bayes_linear.eblinearregression method)": [[25, "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.set_score_request", false]], "set_score_request() (bayesvalidrox.surrogate_models.bayes_linear.vblinearregression method)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.set_score_request", false]], "set_score_request() (bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.orthogonalmatchingpursuit method)": [[52, "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.set_score_request", false]], "set_score_request() (bayesvalidrox.surrogate_models.reg_fast_ard.regressionfastard method)": [[55, "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.set_score_request", false]], "setdefault() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.setdefault", false]], "setup() (bayesvalidrox.bayes_inference.bayes_model_comparison.bayesmodelcomparison method)": [[5, "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.setup", false]], "setup_inference() (bayesvalidrox.bayes_inference.bayes_inference.bayesinference method)": [[3, "bayesvalidrox.bayes_inference.bayes_inference.BayesInference.setup_inference", false]], "sobol_indices() (bayesvalidrox.post_processing.post_processing.postprocessing method)": [[13, "bayesvalidrox.post_processing.post_processing.PostProcessing.sobol_indices", false]], "start_engine() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.start_engine", false]], "subdomain() (in module bayesvalidrox.surrogate_models.engine)": [[32, "bayesvalidrox.surrogate_models.engine.subdomain", false]], "tradeoff_weights() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.tradeoff_weights", false]], "train_error_model() (bayesvalidrox.bayes_inference.mcmc.mcmc method)": [[9, "bayesvalidrox.bayes_inference.mcmc.MCMC.train_error_model", false]], "train_normal() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.train_normal", false]], "train_seq_design() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.train_seq_design", false]], "train_sequential() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.train_sequential", false]], "transform() (bayesvalidrox.surrogate_models.exp_designs.expdesigns method)": [[39, "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.transform", false]], "transform() (bayesvalidrox.surrogate_models.input_space.inputspace method)": [[47, "bayesvalidrox.surrogate_models.input_space.InputSpace.transform", false]], "umbridge_model() (bayesvalidrox.pylink.pylink.pylinkforwardmodel method)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.uMBridge_model", false]], "univ_basis_vals() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.univ_basis_vals", false]], "update() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.update", false]], "update_input_params() (bayesvalidrox.pylink.pylink.pylinkforwardmodel method)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.update_input_params", false]], "update_pce_coeffs() (bayesvalidrox.surrogate_models.surrogate_models.metamodel method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.update_pce_coeffs", false]], "update_precisions() (in module bayesvalidrox.surrogate_models.reg_fast_ard)": [[56, "bayesvalidrox.surrogate_models.reg_fast_ard.update_precisions", false]], "util_alphoptdesign() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.util_AlphOptDesign", false]], "util_bayesianactivedesign() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.util_BayesianActiveDesign", false]], "util_bayesiandesign() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.util_BayesianDesign", false]], "util_varbaseddesign() (bayesvalidrox.surrogate_models.engine.engine method)": [[29, "bayesvalidrox.surrogate_models.engine.Engine.util_VarBasedDesign", false]], "valid_metamodel() (bayesvalidrox.post_processing.post_processing.postprocessing method)": [[13, "bayesvalidrox.post_processing.post_processing.PostProcessing.valid_metamodel", false]], "values() (bayesvalidrox.surrogate_models.surrogate_models.metamodel.auto_vivification method)": [[60, "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification.values", false]], "vblinearregression (class in bayesvalidrox.surrogate_models.bayes_linear)": [[26, "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression", false]], "within_range() (in module bayesvalidrox.pylink.pylink)": [[17, "bayesvalidrox.pylink.pylink.within_range", false]], "zip_subdirs() (bayesvalidrox.pylink.pylink.pylinkforwardmodel method)": [[16, "bayesvalidrox.pylink.pylink.PyLinkForwardModel.zip_subdirs", false]]}, "objects": {"": [[0, 0, 0, "-", "bayesvalidrox"]], "bayesvalidrox": [[1, 0, 0, "-", "bayes_inference"], [11, 0, 0, "-", "post_processing"], [14, 0, 0, "-", "pylink"], [18, 0, 0, "-", "surrogate_models"]], "bayesvalidrox.bayes_inference": [[2, 0, 0, "-", "bayes_inference"], [4, 0, 0, "-", "bayes_model_comparison"], [6, 0, 0, "-", "discrepancy"], [8, 0, 0, "-", "mcmc"]], "bayesvalidrox.bayes_inference.bayes_inference": [[3, 1, 1, "", "BayesInference"]], "bayesvalidrox.bayes_inference.bayes_inference.BayesInference": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "create_error_model"], [3, 2, 1, "", "create_inference"], [3, 2, 1, "", "normpdf"], [3, 2, 1, "", "perform_bootstrap"], [3, 2, 1, "", "plot_log_BME"], [3, 2, 1, "", "plot_post_params"], [3, 2, 1, "", "setup_inference"]], "bayesvalidrox.bayes_inference.bayes_model_comparison": [[5, 1, 1, "", "BayesModelComparison"]], "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison": [[5, 2, 1, "", "__init__"], [5, 2, 1, "", "cal_model_weight"], [5, 2, 1, "", "calc_bayes_factors"], [5, 2, 1, "", "calc_justifiability_analysis"], [5, 2, 1, "", "calc_model_weights"], [5, 2, 1, "", "generate_dataset"], [5, 2, 1, "", "model_comparison_all"], [5, 2, 1, "", "plot_bayes_factor"], [5, 2, 1, "", "plot_just_analysis"], [5, 2, 1, "", "plot_model_weights"], [5, 2, 1, "", "setup"]], "bayesvalidrox.bayes_inference.discrepancy": [[7, 1, 1, "", "Discrepancy"]], "bayesvalidrox.bayes_inference.discrepancy.Discrepancy": [[7, 2, 1, "", "__init__"], [7, 2, 1, "", "get_sample"]], "bayesvalidrox.bayes_inference.mcmc": [[9, 1, 1, "", "MCMC"], [10, 3, 1, "", "gelman_rubin"]], "bayesvalidrox.bayes_inference.mcmc.MCMC": [[9, 2, 1, "", "__init__"], [9, 2, 1, "", "eval_model"], [9, 2, 1, "", "log_likelihood"], [9, 2, 1, "", "log_posterior"], [9, 2, 1, "", "log_prior"], [9, 2, 1, "", "normpdf"], [9, 2, 1, "", "run_sampler"], [9, 2, 1, "", "train_error_model"]], "bayesvalidrox.post_processing": [[12, 0, 0, "-", "post_processing"]], "bayesvalidrox.post_processing.post_processing": [[13, 1, 1, "", "PostProcessing"]], "bayesvalidrox.post_processing.post_processing.PostProcessing": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "check_accuracy"], [13, 2, 1, "", "check_reg_quality"], [13, 2, 1, "", "compute_pce_moments"], [13, 2, 1, "", "plot_moments"], [13, 2, 1, "", "plot_seq_design_diagnostics"], [13, 2, 1, "", "sobol_indices"], [13, 2, 1, "", "valid_metamodel"]], "bayesvalidrox.pylink": [[15, 0, 0, "-", "pylink"]], "bayesvalidrox.pylink.pylink": [[16, 1, 1, "", "PyLinkForwardModel"], [17, 3, 1, "", "within_range"]], "bayesvalidrox.pylink.pylink.PyLinkForwardModel": [[16, 1, 1, "", "OutputData"], [16, 2, 1, "", "__init__"], [16, 2, 1, "", "read_observation"], [16, 2, 1, "", "read_output"], [16, 2, 1, "", "run_command"], [16, 2, 1, "", "run_forwardmodel"], [16, 2, 1, "", "run_model_parallel"], [16, 2, 1, "", "uMBridge_model"], [16, 2, 1, "", "update_input_params"], [16, 2, 1, "", "zip_subdirs"]], "bayesvalidrox.surrogate_models": [[19, 0, 0, "-", "adaptPlot"], [21, 0, 0, "-", "apoly_construction"], [23, 0, 0, "-", "bayes_linear"], [28, 0, 0, "-", "engine"], [33, 0, 0, "-", "eval_rec_rule"], [38, 0, 0, "-", "exp_designs"], [41, 0, 0, "-", "exploration"], [43, 0, 0, "-", "glexindex"], [46, 0, 0, "-", "input_space"], [48, 0, 0, "-", "inputs"], [51, 0, 0, "-", "orthogonal_matching_pursuit"], [54, 0, 0, "-", "reg_fast_ard"], [57, 0, 0, "-", "reg_fast_laplace"], [59, 0, 0, "-", "surrogate_models"]], "bayesvalidrox.surrogate_models.adaptPlot": [[20, 3, 1, "", "adaptPlot"]], "bayesvalidrox.surrogate_models.apoly_construction": [[22, 3, 1, "", "apoly_construction"]], "bayesvalidrox.surrogate_models.bayes_linear": [[24, 1, 1, "", "BayesianLinearRegression"], [25, 1, 1, "", "EBLinearRegression"], [26, 1, 1, "", "VBLinearRegression"], [27, 3, 1, "", "gamma_mean"]], "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression": [[24, 2, 1, "", "__init__"], [24, 2, 1, "", "fit"], [24, 2, 1, "", "get_metadata_routing"], [24, 2, 1, "", "get_params"], [24, 2, 1, "", "predict"], [24, 2, 1, "", "predict_dist"], [24, 2, 1, "", "score"], [24, 2, 1, "", "set_params"], [24, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression": [[25, 2, 1, "", "__init__"], [25, 2, 1, "", "fit"], [25, 2, 1, "", "get_metadata_routing"], [25, 2, 1, "", "get_params"], [25, 2, 1, "", "predict"], [25, 2, 1, "", "predict_dist"], [25, 2, 1, "", "score"], [25, 2, 1, "", "set_params"], [25, 2, 1, "", "set_predict_request"], [25, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression": [[26, 2, 1, "", "__init__"], [26, 2, 1, "", "fit"], [26, 2, 1, "", "get_metadata_routing"], [26, 2, 1, "", "get_params"], [26, 2, 1, "", "predict"], [26, 2, 1, "", "predict_dist"], [26, 2, 1, "", "score"], [26, 2, 1, "", "set_params"], [26, 2, 1, "", "set_predict_request"], [26, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.engine": [[29, 1, 1, "", "Engine"], [30, 3, 1, "", "hellinger_distance"], [31, 3, 1, "", "logpdf"], [32, 3, 1, "", "subdomain"]], "bayesvalidrox.surrogate_models.engine.Engine": [[29, 2, 1, "", "__init__"], [29, 2, 1, "", "choose_next_sample"], [29, 2, 1, "", "dual_annealing"], [29, 2, 1, "", "eval_metamodel"], [29, 2, 1, "", "run_util_func"], [29, 2, 1, "", "start_engine"], [29, 2, 1, "", "tradeoff_weights"], [29, 2, 1, "", "train_normal"], [29, 2, 1, "", "train_seq_design"], [29, 2, 1, "", "train_sequential"], [29, 2, 1, "", "util_AlphOptDesign"], [29, 2, 1, "", "util_BayesianActiveDesign"], [29, 2, 1, "", "util_BayesianDesign"], [29, 2, 1, "", "util_VarBasedDesign"]], "bayesvalidrox.surrogate_models.eval_rec_rule": [[34, 3, 1, "", "eval_rec_rule"], [35, 3, 1, "", "eval_rec_rule_arbitrary"], [36, 3, 1, "", "eval_univ_basis"], [37, 3, 1, "", "poly_rec_coeffs"]], "bayesvalidrox.surrogate_models.exp_designs": [[39, 1, 1, "", "ExpDesigns"], [40, 3, 1, "", "check_ranges"]], "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns": [[39, 2, 1, "", "__init__"], [39, 2, 1, "", "build_polytypes"], [39, 2, 1, "", "check_valid_inputs"], [39, 2, 1, "", "generate_ED"], [39, 2, 1, "", "generate_samples"], [39, 2, 1, "", "init_param_space"], [39, 2, 1, "", "pcm_sampler"], [39, 2, 1, "", "plot_samples"], [39, 2, 1, "", "random_sampler"], [39, 2, 1, "", "read_from_file"], [39, 2, 1, "", "transform"]], "bayesvalidrox.surrogate_models.exploration": [[42, 1, 1, "", "Exploration"]], "bayesvalidrox.surrogate_models.exploration.Exploration": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "approximate_voronoi"], [42, 2, 1, "", "get_exploration_samples"], [42, 2, 1, "", "get_mc_samples"], [42, 2, 1, "", "get_vornoi_samples"]], "bayesvalidrox.surrogate_models.glexindex": [[44, 3, 1, "", "cross_truncate"], [45, 3, 1, "", "glexindex"]], "bayesvalidrox.surrogate_models.input_space": [[47, 1, 1, "", "InputSpace"]], "bayesvalidrox.surrogate_models.input_space.InputSpace": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "build_polytypes"], [47, 2, 1, "", "check_valid_inputs"], [47, 2, 1, "", "init_param_space"], [47, 2, 1, "", "transform"]], "bayesvalidrox.surrogate_models.inputs": [[49, 1, 1, "", "Input"], [50, 1, 1, "", "Marginal"]], "bayesvalidrox.surrogate_models.inputs.Input": [[49, 2, 1, "", "__init__"], [49, 2, 1, "", "add_marginals"]], "bayesvalidrox.surrogate_models.inputs.Marginal": [[50, 2, 1, "", "__init__"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit": [[52, 1, 1, "", "OrthogonalMatchingPursuit"], [53, 3, 1, "", "corr"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit": [[52, 2, 1, "", "__init__"], [52, 2, 1, "", "blockwise_inverse"], [52, 2, 1, "", "fit"], [52, 2, 1, "", "get_metadata_routing"], [52, 2, 1, "", "get_params"], [52, 2, 1, "", "loo_error"], [52, 2, 1, "", "predict"], [52, 2, 1, "", "score"], [52, 2, 1, "", "set_params"], [52, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.reg_fast_ard": [[55, 1, 1, "", "RegressionFastARD"], [56, 3, 1, "", "update_precisions"]], "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD": [[55, 2, 1, "", "__init__"], [55, 2, 1, "", "fit"], [55, 2, 1, "", "get_metadata_routing"], [55, 2, 1, "", "get_params"], [55, 2, 1, "", "log_marginal_like"], [55, 2, 1, "", "predict"], [55, 2, 1, "", "score"], [55, 2, 1, "", "set_params"], [55, 2, 1, "", "set_predict_request"], [55, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.reg_fast_laplace": [[58, 1, 1, "", "RegressionFastLaplace"]], "bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace": [[58, 2, 1, "", "__init__"], [58, 2, 1, "", "predict"]], "bayesvalidrox.surrogate_models.surrogate_models": [[60, 1, 1, "", "MetaModel"], [61, 3, 1, "", "corr_loocv_error"], [62, 3, 1, "", "create_psi"], [63, 3, 1, "", "gaussian_process_emulator"]], "bayesvalidrox.surrogate_models.surrogate_models.MetaModel": [[60, 2, 1, "", "__init__"], [60, 2, 1, "", "adaptive_regression"], [60, 2, 1, "", "add_InputSpace"], [60, 1, 1, "", "auto_vivification"], [60, 2, 1, "", "build_metamodel"], [60, 2, 1, "", "copy_meta_model_opts"], [60, 2, 1, "", "create_model_error"], [60, 2, 1, "", "eval_metamodel"], [60, 2, 1, "", "eval_model_error"], [60, 2, 1, "", "fit"], [60, 2, 1, "", "generate_polynomials"], [60, 2, 1, "", "pca_transformation"], [60, 2, 1, "", "regression"], [60, 2, 1, "", "univ_basis_vals"], [60, 2, 1, "", "update_pce_coeffs"]], "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification": [[60, 2, 1, "", "clear"], [60, 2, 1, "", "copy"], [60, 2, 1, "", "fromkeys"], [60, 2, 1, "", "get"], [60, 2, 1, "", "items"], [60, 2, 1, "", "keys"], [60, 2, 1, "", "pop"], [60, 2, 1, "", "popitem"], [60, 2, 1, "", "setdefault"], [60, 2, 1, "", "update"], [60, 2, 1, "", "values"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function"}, "terms": {"": [9, 13, 16, 22, 24, 25, 26, 29, 33, 42, 52, 55, 56, 58, 60, 76, 81], "0": [3, 5, 7, 16, 24, 25, 26, 30, 44, 45, 49, 52, 55, 58, 60, 65, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81], "0001": 26, "001": [13, 25, 55], "002": 22, "01": 5, "032": 42, "045e": 79, "05": [3, 22, 42, 79], "06": 25, "07": [58, 79], "08": 51, "1": [3, 5, 9, 10, 13, 16, 24, 25, 26, 29, 30, 33, 34, 35, 36, 39, 42, 44, 45, 47, 49, 52, 55, 58, 60, 61, 62, 65, 68, 69, 71, 73, 76, 77, 78, 79, 80, 81], "10": [13, 22, 42, 44, 58, 65, 79, 80, 81], "100": [3, 26, 55, 60, 68, 72, 75, 76, 81], "1000": [5, 13, 58, 65, 81], "10000": 76, "100000": 3, "1016": [13, 22, 42], "104": 33, "106": [22, 29], "106737": 13, "11": [13, 42, 79], "12": [60, 65, 75], "125": 9, "13": 19, "14": [33, 51, 73, 76], "15": [51, 76, 79], "150": [65, 78, 81], "16": [39, 81], "171": 29, "179": 22, "18082457": 60, "182": 29, "19": [54, 58], "190": 22, "195": 13, "1993": 52, "1e": [25, 26, 39, 55, 58, 81], "1e5": 81, "2": [3, 7, 9, 13, 24, 25, 26, 29, 33, 39, 44, 45, 47, 52, 55, 58, 60, 61, 65, 68, 69, 73, 74, 75, 78, 79, 81], "200": [3, 73, 81], "2001": 55, "2002": 81, "2003": [55, 58], "2004": 76, "2006": [55, 58], "2009": [52, 58, 61], "2010": [9, 42], "2011": [13, 42, 52, 61, 81], "2012": [22, 81], "2013": [9, 69, 73, 78], "2014": 33, "2016": 29, "2017": 29, "2018": 29, "2020": [13, 19, 29, 54], "2021": 33, "2022": [33, 51], "2051": 42, "2055": 42, "214": 42, "22": 29, "224e": 79, "23": [24, 25, 26, 52, 55], "230": [52, 61], "2345": [52, 61], "2367": [52, 61], "24": [19, 54], "2554": 33, "2563": 33, "27": 13, "27th": 52, "2_": 81, "2d": [16, 31, 60], "2e": 3, "2nd": 33, "3": [3, 24, 25, 26, 37, 39, 42, 45, 47, 52, 55, 58, 65, 69, 71, 73, 76, 77, 80, 81], "30": 81, "300": [25, 55, 69], "306": 9, "332": 29, "382": 29, "4": [26, 33, 39, 45, 65, 68, 69, 75, 76, 78, 81], "40": 52, "406e": 79, "407": 29, "41": 54, "44": 52, "45": 54, "46": 19, "5": [9, 25, 29, 49, 65, 69, 72, 73, 76, 79, 81], "50": 69, "500": [76, 81], "5000": 69, "500000": 3, "513e": 79, "53": 58, "59": 51, "5a": 22, "6": [45, 52, 61, 68], "61": 33, "63": 58, "65": [9, 76], "651879": 60, "66": 76, "683": 42, "696": 42, "7": [58, 60, 76], "70569": [22, 33], "75": [68, 81], "751": 76, "769": 76, "8": [29, 69, 78], "80": 9, "85": [65, 80], "890": 29, "9": [71, 77, 80, 81], "925": 9, "99": 60, "999": 60, "A": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 33, 39, 42, 47, 49, 52, 55, 56, 58, 60, 65, 69, 71, 73, 74, 75, 78, 79, 81], "As": 81, "FOR": [69, 73, 78], "For": [7, 10, 13, 24, 25, 26, 39, 52, 55, 60, 69, 73, 74, 78, 80, 81], "If": [3, 7, 9, 13, 16, 24, 25, 26, 39, 40, 45, 47, 49, 52, 55, 58, 60, 69, 72, 73, 77, 78, 81], "In": [3, 7, 42, 60, 72, 74, 80, 81], "It": [16, 29, 60, 77], "Its": 74, "NO": [69, 73, 78], "NOT": [69, 73, 78], "No": [29, 69, 73, 75, 76, 78], "OF": [69, 73, 78], "OR": [69, 73, 78], "One": [29, 60], "THE": [69, 73, 78], "THERE": [69, 73, 78], "The": [3, 5, 7, 9, 10, 13, 16, 22, 24, 25, 26, 29, 30, 36, 37, 39, 40, 42, 44, 45, 47, 50, 52, 55, 60, 61, 63, 68, 70, 71, 72, 74, 75, 77, 79, 80, 81], "Then": [77, 80], "There": 60, "These": 81, "To": [60, 79], "Will": 39, "With": [7, 74, 80, 81], "_": [7, 80], "__": [24, 25, 26, 52, 55], "__init__": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 39, 42, 47, 49, 50, 52, 55, 58, 60], "_i": 7, "aa": 55, "ab": [34, 37], "about": 70, "abov": [3, 75], "absolut": [55, 58], "abstract": [24, 55], "accept": [60, 81], "accord": [80, 81], "accordingli": [69, 73, 78], "account": 77, "accuraci": [13, 77, 79, 81], "accuracycheckmetamodel": 81, "achiev": 30, "activ": [3, 29, 39, 56, 65, 68, 73, 77, 78, 79, 80, 81], "active_": [52, 55, 58], "actual": [16, 29, 80, 81], "ad": [24, 25, 26, 52, 55, 56, 72], "adapt": [16, 29, 42, 52, 60, 61], "adapt_verbos": 39, "adaptive_regress": 60, "add": [49, 71, 81], "add_expdesign": [], "add_inputspac": 60, "add_margin": [49, 72, 81], "addit": [7, 16, 81], "addition": [69, 72, 73, 78], "adopt": 81, "advwatr": 13, "affin": 9, "again": [16, 81], "against": [17, 72, 77, 79], "ai": 9, "ainv": 52, "al": [3, 65, 69, 76], "al_descript": [], "alc": 29, "alg": 58, "algorithm": [29, 52, 55, 58, 60], "alia": [24, 25, 26, 52, 55], "all": [3, 5, 13, 16, 17, 24, 25, 26, 29, 36, 39, 47, 52, 55, 60, 62, 71, 72, 75, 77, 79, 81], "all_candid": 42, "all_just_data": 5, "all_output": 16, "allow": [16, 24, 25, 26, 52, 55, 74, 79, 81], "alm": 29, "almost": 76, "along": [29, 36, 60, 81], "alpha": 25, "alpha_": [25, 26, 55, 58], "alphabet": [29, 39], "alreadi": [52, 55, 58], "also": [29, 39, 60, 80, 81], "altern": [29, 80], "alwai": [24, 25, 26, 45, 52, 55], "amazaspshumik": 55, "an": [3, 7, 9, 10, 13, 16, 24, 25, 26, 29, 39, 42, 47, 50, 52, 55, 60, 68, 71, 72, 74, 75, 77, 78, 79, 80], "analysi": [3, 5, 13, 16, 33, 52, 55, 60, 61, 69, 73, 76, 77, 81], "analyt": [70, 71, 81], "analytical_funct": 81, "analyticfunc": 81, "anaylsi": 13, "angl": [52, 60, 61], "ani": [3, 52, 60, 69, 73, 78, 81], "anneal": 39, "anoth": [16, 42, 81], "apc": [22, 59, 60, 65, 69, 72, 73, 75, 76, 78, 79, 80, 81], "api": 71, "apoly_coeff": 36, "app": 39, "appli": [9, 29, 60, 72], "applic": [13, 37, 52, 79], "apply_constraint": 60, "approach": [10, 29, 76], "approxim": [3, 9, 26, 42, 52, 79, 80, 81], "approximate_voronoi": 42, "ar": [3, 5, 7, 9, 10, 13, 16, 17, 24, 25, 26, 29, 34, 35, 39, 44, 45, 52, 55, 60, 70, 71, 72, 74, 75, 76, 77, 79, 80, 81], "arang": 81, "arbitrari": [22, 60, 80, 81], "arbitrarili": [24, 25, 26, 52, 55], "ard": [55, 60], "area": 42, "arg": [3, 44, 45], "argument": [3, 16, 62, 81], "around": 81, "arrai": [3, 5, 7, 9, 10, 13, 16, 17, 22, 24, 25, 26, 29, 30, 31, 34, 35, 36, 39, 40, 42, 44, 45, 47, 50, 52, 55, 58, 60, 61, 62, 63, 74], "array_lik": 31, "asilomar": 52, "askei": 37, "aspect": 77, "assembl": 62, "asset": 10, "assign": [3, 30, 39], "assist": [65, 78], "associ": [38, 42, 65, 68, 69, 72, 73, 75, 76, 78, 80, 81], "assum": [16, 26, 45, 69, 73, 78, 81], "astronom": 9, "asumpt": 5, "attribut": [72, 80], "aug": 19, "author": [19, 22, 33, 51, 54, 69, 73, 78], "auto_vivif": 60, "automat": [55, 72, 81], "autoselect": 63, "autovivif": 60, "aux_fil": 16, "auxiliari": 16, "avail": [3, 7, 16, 39, 47, 50, 60, 68, 71, 77, 80, 81], "avali": 49, "averag": 5, "avoid": 81, "axi": [13, 45, 74], "b": [3, 7, 10, 13, 26, 27, 33, 52, 60, 61, 74, 76, 79], "b_i": 44, "babacan": 58, "bal": [29, 65], "bar": 13, "barro": 13, "base": [3, 5, 7, 9, 13, 16, 22, 24, 25, 26, 29, 31, 33, 35, 36, 39, 42, 47, 49, 50, 52, 55, 56, 58, 60, 61, 72, 75, 77, 78, 80, 81], "basi": [22, 62], "basic": [77, 81], "basis_indic": [60, 62], "bay": [3, 5, 9, 24, 25, 55, 77], "bayes_": 81, "bayes_env": 77, "bayes_inf": [], "bayes_infer": 81, "bayes_loocv": 3, "bayes_pc": 81, "bayesactdesign": [29, 39, 81], "bayesfactor": 5, "bayesian": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 55, 58, 60, 65, 73, 76, 77, 78], "bayesian3": 29, "bayesianlinearregress": [25, 26], "bayesinfer": [5, 81], "bayesopt": [9, 81], "bayesoptdesign": [29, 39], "bayesvalidrox": [66, 68, 70, 71, 72, 74, 77, 79, 80, 81], "bc": [58, 73, 78], "beam": [70, 71, 74], "beam9point": 68, "becaus": [24, 25, 26, 52, 55], "beck": 29, "been": [16, 39], "befor": [16, 29, 60, 80, 81], "beforehand": 39, "behaviour": 80, "being": [3, 9, 16], "below": [55, 58], "best": [24, 25, 26, 52, 55, 60, 63, 77], "beta": [55, 72], "beta_": [25, 26], "better": 25, "between": [10, 17, 30, 60, 81], "bia": [25, 26], "bias_input": [9, 81], "bias_term": 58, "biasinput": 9, "bin": 77, "binder": 16, "bingham": [69, 73, 78], "bishop": [55, 58], "bit": 81, "blatman": [52, 61, 81], "blob": [10, 43, 55], "blockwise_invers": 52, "bm": 5, "bmc": 3, "bme": [3, 5, 13, 81], "bme_dict": 5, "bonu": [], "bool": [3, 5, 16, 17, 24, 25, 26, 29, 39, 40, 45, 47, 49, 52, 55, 58, 60, 63], "boolean": [25, 44, 52, 55, 58], "bootstrap": [3, 5, 60, 65, 78], "bootstrap_method": 60, "bootstrap_nois": 3, "borehol": [70, 71], "both": [10, 44, 45, 79, 81], "bound": [17, 29, 32, 39, 44, 45, 47], "bound_tupl": [39, 47], "boundari": 29, "bridg": 74, "brief": 77, "broad": [25, 74], "brr": 60, "bug": 81, "build": [29, 60, 72, 77, 80], "build_metamodel": 60, "build_polytyp": [39, 47], "built": [46, 80], "burn": 3, "bvr": 71, "c": [24, 26, 40, 52, 55, 58], "c_point": 16, "ca": [69, 73, 78], "cai": 29, "cal_model_weight": 5, "calc_bayes_factor": 5, "calc_justifiability_analysi": 5, "calc_model_weight": 5, "calcul": [3, 5, 9, 24, 25, 26, 29, 39, 47, 52, 55, 58, 61, 72, 77, 79, 81], "calib": [3, 13, 16], "calibr": [3, 7, 13, 16, 65, 78, 81], "call": [10, 15, 16, 24, 25, 26, 52, 55, 60, 80, 81], "calss": 16, "cambridg": 42, "can": [3, 7, 13, 16, 24, 25, 26, 29, 44, 49, 52, 55, 60, 66, 68, 69, 70, 71, 72, 73, 74, 77, 78, 80, 81], "candid": [29, 39, 42], "captur": 80, "carlo": [3, 9, 16, 42, 81], "case": [3, 7, 13, 16, 25, 42, 60], "cd": 77, "cell": 42, "center": [42, 52, 55, 58], "chain": [3, 9, 10], "chair": 33, "chang": [13, 24, 25, 26, 52, 55, 58], "chao": [13, 22, 29, 33, 52, 60, 61, 79, 80, 81], "chaospi": [39, 47], "characteris": [25, 26, 55, 58], "characterist": [65, 68], "chart": 13, "cheap": 81, "chebyshev": [39, 72], "check": [3, 13, 16, 17, 24, 25, 26, 39, 40, 47, 52, 55, 69, 72, 73, 76, 77, 79, 81], "check_accuraci": [13, 79], "check_reg_qu": 13, "check_valid_input": [39, 47], "chemic": 29, "choos": [29, 77, 81], "choose_next_sampl": 29, "chosen": [3, 76, 81], "cite": 81, "class": [2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 16, 23, 24, 25, 26, 28, 29, 38, 39, 41, 42, 46, 47, 48, 49, 50, 51, 52, 54, 55, 57, 58, 59, 60, 71, 72, 74, 77, 79, 81], "classic": 37, "clear": 60, "clearli": [69, 73, 78], "clermont": [52, 61], "clf": 61, "clf_bia": 56, "clone": 77, "code": [16, 81], "coef_": [25, 26, 52, 55, 58], "coeff": [52, 61], "coeffic": 60, "coeffici": [22, 24, 25, 26, 35, 36, 37, 52, 55, 58, 60, 61, 76, 81], "coffici": [52, 61], "cohn": 29, "collaps": 42, "colloc": [16, 39], "column": [16, 81], "com": [10, 13, 43, 55, 58, 60], "combin": [10, 52, 60, 80, 81], "command": [16, 42, 68, 74], "comment": [69, 73, 78], "common": 49, "commun": 9, "compar": [3, 9, 16, 60, 77, 79], "comparison": [5, 39, 70, 71, 77, 79, 81], "complet": 74, "complex": 76, "compon": [13, 24, 25, 26, 52, 55, 60], "compress": [58, 73, 78], "comput": [9, 13, 25, 26, 27, 29, 31, 35, 36, 37, 42, 52, 55, 58, 60, 61, 77, 79, 81], "compute_pce_mo": 13, "compute_scor": 55, "computed_scor": 55, "conf": 33, "confer": 52, "confus": 5, "confusion_matrix": 5, "consid": [7, 45, 72, 80, 81], "consist": [24, 25, 26, 52, 55, 80], "consol": 79, "constant": [24, 25, 26, 52, 55], "constraint": 60, "construct": [22, 72], "contain": [3, 5, 9, 16, 24, 25, 26, 29, 39, 47, 50, 52, 55, 60, 72, 74, 77, 78, 81], "context": 7, "continu": 30, "contribut": 76, "converg": [10, 25, 26, 81], "convini": 60, "coordin": [16, 60], "copi": [16, 25, 52, 55, 58, 60], "copy_meta_model_opt": 60, "copy_x": [24, 25, 26, 52, 55, 58], "copyright": [69, 73, 78], "core": 81, "corner": 3, "corner_title_fmt": 3, "correct": [52, 61], "correl": 75, "correspond": [13, 16, 24, 25, 26, 34, 42, 50, 60, 72, 77, 79, 80], "cosin": 75, "cost": 80, "couckuyt": 42, "count": 45, "cov": 31, "covari": [3, 7, 9, 25, 26, 31, 55, 58], "cpu": 16, "creat": [3, 5, 16, 19, 33, 39, 42, 47, 51, 54, 60, 68, 72, 74, 77, 80, 81], "create_error_model": 3, "create_infer": [3, 81], "create_metamodel": [], "create_model_error": 60, "credit": 43, "crieterion": 42, "criteria": 44, "criterion": 29, "crombecq": 42, "cross": [3, 39, 45, 60], "cross_trunc": 45, "csv": 16, "currecnt": 16, "current": [16, 22, 77], "d": [9, 26, 29, 39, 42, 52, 58, 60, 78, 80], "data": [3, 5, 9, 16, 17, 22, 24, 25, 26, 31, 39, 47, 49, 50, 52, 55, 58, 60, 71, 72, 75, 77, 80], "data_noise_level": 5, "datafram": [3, 7, 9, 16, 81], "dataset": 80, "dbingham": [69, 73, 78], "de": [13, 22, 33, 71, 77], "deafault": 25, "deal": [69, 73, 76], "decai": 29, "decomposit": 52, "decreas": [29, 78], "deep": [24, 25, 26, 52, 55], "def": 74, "default": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 36, 37, 39, 42, 47, 50, 52, 55, 58, 60, 63], "defin": [3, 5, 7, 10, 16, 24, 25, 26, 32, 34, 39, 42, 49, 52, 55, 60, 71, 72, 74, 77, 80], "definit": [7, 22, 72, 81], "deflect": 68, "degre": [22, 34, 35, 36, 37, 39, 47, 60, 65, 68, 69, 73, 75, 76, 78, 80, 81], "delet": 56, "demeest": 42, "denot": 74, "depart": [22, 33], "depend": [25, 26, 49, 65, 68, 69, 73, 75, 76, 78], "deprec": [80, 81], "depth": 71, "derek": [69, 73, 78], "deriv": [69, 73, 78], "describ": [58, 71, 72, 77, 81], "descrip": 7, "descript": [3, 5, 9, 16, 29, 31, 60, 71, 77], "design": [13, 16, 29, 38, 39, 42, 60, 62, 65, 71, 74, 77, 78, 80], "detail": [13, 65, 69, 72, 73, 75, 77, 78], "determin": [24, 25, 26, 52, 55], "deviat": [13, 16, 60, 80, 81], "deviatioon": [29, 60], "dhaen": 42, "diagnost": 79, "diagon": [3, 7, 9], "dict": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 35, 36, 37, 52, 55, 60], "dictionari": [3, 5, 9, 13, 16, 29, 60, 74, 81], "differ": [30, 60, 71, 75, 81], "dim": 60, "dim_red_method": 60, "dimens": [45, 52], "dimension": [25, 26, 55, 58, 60, 74], "dir_nam": 16, "direct": [36, 60, 80], "directi": 81, "directli": [72, 80, 81], "directori": [13, 16, 81], "disc_typ": 7, "discoutputopt": 81, "discrep": [3, 9, 81], "discrepancyopt": 81, "discuss": 81, "displai": [13, 81], "disregard": [24, 25, 26, 52, 55], "disrep": 7, "dissert": [52, 61], "dist": [3, 39, 47], "dist_typ": [49, 50, 72, 81], "distanc": 30, "distibut": 5, "distribut": [3, 7, 9, 24, 25, 26, 27, 30, 31, 39, 46, 47, 48, 50, 52, 55, 58, 60, 65, 68, 69, 72, 73, 75, 76, 78, 80, 81], "diverg": [3, 13, 39], "divid": 32, "dkl": [29, 39, 65, 81], "do": [13, 29, 62, 69, 73, 77, 78, 81], "doctor": [52, 61], "document": 71, "doe": [16, 60, 68], "doi": [13, 22, 42], "domain": [32, 42], "done": [16, 39, 60, 81], "doostan": 29, "dot": 80, "dpp": 39, "dr": 22, "drainag": 13, "drawn": [3, 81], "driven": 22, "dtype": [52, 55, 58], "dual": 39, "dual_ann": 29, "due": 73, "dump": 81, "dure": [60, 79, 80], "e": [3, 7, 9, 16, 22, 24, 25, 26, 33, 39, 42, 45, 47, 52, 55, 58, 60, 63, 74], "each": [3, 5, 7, 9, 13, 16, 24, 25, 26, 32, 39, 42, 44, 45, 50, 52, 55, 58, 60, 70, 74, 77, 81], "earlier": 81, "easi": 74, "easili": 81, "ebl": 60, "ed_i": 60, "effect": [7, 24, 25, 26, 52, 55, 56, 76], "effici": [13, 42], "eigenvalu": [25, 26], "eigenvector": [25, 26], "eigf": 39, "eigvals_": [25, 26], "eigvecs_": [25, 26], "either": [3, 16, 25, 39, 47, 59, 60, 65, 72, 81], "ejor": 42, "els": [39, 40, 47, 52, 55, 58, 60], "elsevi": 22, "em": 25, "email": [69, 73, 78], "emce": [3, 9, 10, 81], "emper": 60, "empir": [24, 25], "empti": 60, "emul": [3, 5, 9, 29, 63, 81], "en": 9, "enable_metadata_rout": [24, 25, 26, 52, 55], "encapsul": [24, 25, 26, 52, 55], "end": 16, "engin": [3, 9, 13, 22, 71, 79], "engine_": [79, 80], "enrich": 29, "ensampl": 10, "ensembl": 9, "entri": [3, 7, 9], "entropi": [3, 29, 39, 78], "environ": 77, "environment": [22, 33, 78], "epsilon": [7, 29, 78, 81], "eq": 13, "equal": [5, 7, 29], "erro": 61, "error": [3, 7, 9, 13, 24, 25, 26, 29, 52, 55, 60, 61, 69, 73, 79, 81], "error_metamodel": 9, "error_model": 9, "especi": [25, 81], "ess": 10, "estim": [3, 10, 16, 24, 25, 26, 30, 52, 55, 58, 60, 61, 63, 77, 79, 81], "eth": 33, "european": 42, "eval_metamodel": [29, 60, 80], "eval_model": 9, "eval_model_error": 60, "evalu": [5, 9, 13, 15, 29, 34, 35, 36, 52, 60, 62, 74, 77, 79, 80, 81], "evaul": 39, "even": [69, 73, 78], "evereyth": 29, "everi": 30, "evid": [3, 13], "exact": 80, "exampl": [13, 16, 44, 45, 71, 77, 81], "except": [13, 24, 25, 26, 52, 55, 60], "exe_path": 16, "execut": [16, 68, 74], "exist": [24, 25, 26, 52, 55], "exlor": 29, "exp_design": 72, "expand": [77, 79, 80], "expans": [13, 22, 29, 33, 45, 52, 60, 61, 79, 80, 81], "expd": 29, "expdesign": [29, 42, 72, 80, 81], "expect": [7, 13, 16, 24, 25, 26, 29, 39, 52, 55, 58, 79], "experi": 29, "experiment": [29, 38, 39, 42, 60, 71, 74, 77, 80], "explain": [60, 81], "explan": [65, 75], "explanatori": [25, 26, 52, 55, 58], "explicitli": 60, "exploit": [29, 39, 65, 69, 76, 81], "exploit_method": [39, 81], "exploitaiton": [69, 76, 81], "exploitation_weight": 29, "explor": [29, 39, 65, 69, 76, 81], "exploration_scor": 42, "exploration_weight": 29, "explore_method": [39, 81], "expon": [43, 45, 72], "exponenti": [29, 75], "express": [69, 73, 78], "extens": [16, 74, 81], "extra": 75, "extract": [16, 60], "f": [13, 60, 81], "fa61759ff685": 13, "factor": [5, 10, 77], "fals": [3, 5, 10, 20, 24, 25, 26, 29, 39, 40, 45, 52, 55, 58, 60, 63, 81], "far": 7, "farid": [19, 29, 33, 51, 54], "fast": [55, 58, 60, 78], "fast_rvm": 55, "fastard": [60, 65, 68, 76, 80, 81], "faster": [25, 81], "fastsbl": [55, 58], "faul": [55, 58], "featur": [24, 25, 26, 52, 55, 56, 60], "feinberg": 43, "ferrand": [52, 61], "field": 26, "file": [16, 29, 39, 68, 74, 75, 78, 81], "file_nam": 16, "filenam": 74, "fill": [39, 42, 69, 76], "final_out_dict": 60, "find": [16, 29, 60, 66], "first": [13, 16, 29, 45, 60, 80, 81], "fit": [24, 25, 26, 39, 52, 55, 58, 60, 61, 63, 69, 73, 78, 80], "fit_intercept": [24, 25, 26, 52, 55, 58], "fix": [25, 58, 73], "flag": [39, 47], "flexibl": 13, "float": [3, 5, 9, 10, 24, 25, 26, 27, 29, 30, 31, 39, 44, 45, 52, 55, 58, 60, 61, 63], "flow": [69, 73], "folder": [72, 77, 79, 81], "follow": [3, 7, 22, 29, 39, 44, 49, 60, 70, 72, 81], "followin": 7, "forc": 60, "foreman": 9, "form": [24, 25, 26, 52, 55, 81], "format": [3, 7, 13], "formul": 72, "formula": 58, "forward": 16, "found": [60, 70, 71, 74, 81], "foundat": [69, 73, 78], "four": 72, "fp": 25, "frac": [9, 24, 25, 26, 52, 55], "framework": [13, 33], "fraser": [69, 73, 78], "free": [69, 73, 78], "fri": [33, 51], "from": [3, 5, 13, 16, 24, 25, 26, 29, 34, 39, 46, 47, 52, 55, 58, 60, 62, 71, 72, 74, 77, 79, 80, 81], "fromkei": 60, "ft": [39, 72], "full": [79, 80, 81], "fulli": 10, "func": 16, "func_arg": 16, "function": [3, 8, 13, 15, 16, 19, 21, 23, 28, 29, 33, 38, 39, 40, 42, 43, 44, 51, 52, 54, 59, 60, 62, 69, 70, 71, 73, 74, 75, 77, 78, 79, 80, 81], "functtion": 60, "further": [39, 47, 80], "futur": [75, 80], "g": [16, 24, 25, 26, 45, 52, 55, 58, 61, 74], "gain": [79, 81], "gamma": [26, 27, 39, 47, 72], "gaussian": [7, 9, 24, 25, 26, 29, 55, 58, 60, 63, 65, 68, 76, 80, 81], "gaussian_kd": [39, 47], "gelman": 10, "gener": [5, 7, 16, 24, 25, 26, 29, 39, 42, 45, 47, 52, 55, 60, 61, 69, 72, 73, 74, 78, 80, 81], "generate_": 39, "generate_dataset": 5, "generate_polynomi": 60, "generate_sampl": [39, 72], "get": [3, 24, 25, 26, 52, 55, 60, 71, 79], "get_exploration_sampl": 42, "get_mc_sampl": 42, "get_metadata_rout": [24, 25, 26, 52, 55], "get_param": [24, 25, 26, 52, 55], "get_sampl": 7, "get_vornoi_sampl": 42, "git": [70, 71, 77], "github": [10, 43, 55, 71], "give": [74, 77, 80, 81], "given": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 39, 40, 47, 49, 52, 55, 60, 62, 63, 68, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "global": [13, 39, 42, 81], "gnu": [69, 73, 78], "go": 3, "goal": 80, "goodman": 9, "gorissen": 42, "gp": [63, 80], "gpe": [59, 60], "grade": 45, "greater": 10, "grid": [39, 72], "group": [7, 39], "guid": [24, 25, 26, 52, 55, 71], "guilla": 29, "gull": 25, "h5py": 39, "h_l": 69, "h_u": 69, "ha": [9, 24, 25, 26, 39, 45, 47, 52, 55, 60, 80, 81], "habil": 22, "hadigol": 29, "hagan": 76, "haitao": 29, "halton": [39, 72], "hammer": 9, "hammerslei": [39, 72], "handi": 81, "have": [7, 10, 16, 24, 25, 26, 39, 47, 52, 55, 56, 74, 76, 81], "hdf5": [29, 39], "hdf5_file": 39, "head": 71, "height": 68, "helling": 30, "help": 81, "helper": 13, "here": [3, 16, 60, 66, 70, 71, 74, 77, 78, 80, 81], "hermit": 72, "highest": [60, 81], "histogram": 81, "hogg": 9, "hold": 44, "holder": 16, "hope": [69, 73, 78], "how": [13, 24, 25, 26, 52, 55, 60, 68, 69, 73, 75, 76, 81], "howev": 81, "htm": 55, "html": [10, 69, 73], "http": [9, 10, 13, 22, 42, 43, 55, 58, 60, 69, 71, 73, 77, 78], "hydraul": [22, 33], "hydrogeologi": 13, "hydromechan": 33, "hydrosystem": [22, 33], "hyperbol": [45, 60], "hypercub": [65, 68, 69, 72, 73, 75, 76, 78], "i": [3, 5, 7, 9, 10, 13, 16, 22, 24, 25, 26, 29, 30, 36, 37, 39, 42, 45, 47, 49, 50, 52, 55, 58, 60, 63, 65, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "icvram2014": 33, "id": 16, "ident": 30, "ieee": 58, "ifram": 81, "ignor": [24, 25, 26, 52, 55], "ii": [25, 81], "iii": 81, "ilja": 29, "illustr": 68, "imag": 58, "implement": [24, 26, 33, 42, 59, 60, 81], "impli": [69, 73, 78], "implment": 81, "import": [13, 71, 72, 74, 79, 80], "importantli": 80, "improv": 39, "inaccuraci": 7, "includ": [5, 16, 25, 26, 44, 45, 72, 77, 79, 81], "increas": 29, "independ": 7, "index": [29, 44, 45, 60, 62, 63, 71, 79], "indic": [3, 10, 13, 43, 44, 45, 60, 62, 69, 73, 74, 76, 77, 79, 80, 81], "induc": [60, 81], "inf": 45, "inf_entropi": 3, "infer": [3, 7, 9, 13, 16, 68, 71, 77, 78], "inference_method": [3, 81], "influenc": [24, 25, 26, 29, 52, 55], "inform": [3, 24, 25, 26, 29, 52, 55, 60, 69, 73, 78, 81], "ing": 22, "init_param_spac": [39, 47], "init_sampl": 3, "initi": [3, 5, 25, 39, 47, 55, 81], "input": [3, 7, 13, 16, 24, 25, 26, 29, 36, 39, 42, 46, 47, 52, 55, 60, 65, 68, 69, 71, 73, 74, 75, 76, 77, 78, 80], "input_data": [49, 50, 72, 81], "input_descript": [], "input_fil": 16, "input_obj": 60, "input_object": [39, 47], "input_spac": 72, "input_templ": 16, "inputdisc": 7, "inputobj": [39, 47], "inputparam": [65, 72, 81], "inputparameters_2": 81, "inputspac": [39, 60, 72], "insert": 60, "insid": [17, 24, 25, 26, 52, 55, 77], "insight": [], "instanc": [24, 25, 26, 52, 55, 60], "instanci": 60, "instanti": 81, "instead": [24, 25, 26, 45, 52, 55], "institut": [22, 33], "instruct": [60, 81], "int": [3, 5, 7, 13, 16, 17, 22, 25, 26, 29, 32, 33, 34, 35, 36, 37, 39, 42, 44, 45, 47, 55, 58, 60, 63], "intec": 42, "intercept": [52, 55, 58], "intercept_": [25, 26], "interconnect": [], "interest": 74, "interfac": [74, 77], "intersit": 42, "intro": [], "introduc": 77, "introduct": 70, "introductori": [71, 81], "inv_inf_matrix": 52, "invari": 9, "invers": [7, 52, 81], "inversemodel": [71, 77], "io": [9, 10], "ipython": 81, "ishigami": [69, 70, 71], "isoprobabilist": [39, 47, 72], "issu": 68, "item": [3, 16, 60], "iter": [3, 5, 25, 26, 29, 55, 58, 60, 65, 69, 72, 76, 77, 79, 80, 81], "its": [16, 74, 77, 79, 80, 81], "itself": 80, "iw": [22, 33, 71, 77], "j": [9, 13, 22, 42, 76], "jacobi": 34, "jan": 33, "jdist": [39, 47], "jianfei": 29, "jobe": 16, "joblib": 81, "joergdietrich": 10, "jointli": [3, 7, 9, 78], "jonathan": 43, "jonathf": 43, "journal": [42, 52, 61], "jul": 51, "just": [39, 47, 81], "just_analysi": 3, "justifi": [3, 5, 77], "jwalton3141": 10, "k": [3, 9, 39, 42, 58, 60], "k_w": 69, "karniadaki": 81, "katsaggelo": 58, "kdemov": 81, "keep": [24, 25, 26, 52, 55, 81], "kei": [16, 39, 60, 74], "kernel": [24, 25, 26, 52, 55, 63, 80], "key_str": 16, "keyerror": 60, "keyword": 16, "kingdom": 33, "kl": 26, "kld": [3, 13], "known": [3, 7, 9, 39, 81], "krige": 29, "krishnaprasad": 52, "kroeker": 29, "kullback": [3, 13, 39], "l": [69, 78], "l_0": 44, "l_inf": 44, "l_p": 44, "label": [13, 74], "lack": 60, "laerman": 42, "laguerr": [37, 39, 47], "lambda": 81, "lambda_": [55, 58], "lang": 9, "laplac": 58, "lar": 60, "larg": 81, "larger": [44, 45], "largest": 45, "last": 60, "lastli": 74, "later": 81, "latest": 77, "latin": [65, 68, 69, 72, 73, 75, 76, 78], "latin_hypercub": [39, 72, 81], "latter": [24, 25, 26, 45, 52, 55, 81], "lead": 77, "learn": [29, 39, 42, 55, 58, 60, 68, 73, 77, 78, 79, 80, 81], "least": [29, 52, 60, 61, 72], "leav": [3, 39, 60], "leibler": [3, 13, 39], "length": [3, 25, 26, 55, 58, 74], "leq": 44, "less": 81, "let": 81, "level": [3, 5], "lexicograph": 45, "lh2": 33, "li": 40, "liabil": [69, 73, 78], "lib": 58, "librari": 71, "licens": [69, 73, 78], "lie": 17, "lifo": 60, "like": [3, 24, 25, 26, 52, 55, 58, 60, 61, 80, 81], "likelihood": [3, 7, 9, 25, 30, 31, 55, 56, 58, 81], "line": 13, "linear": [24, 25, 26, 75], "linearmodel": [24, 52, 55], "link": [68, 74, 77, 81], "link_typ": [16, 74, 81], "list": [3, 16, 17, 24, 25, 26, 29, 32, 36, 37, 39, 40, 42, 45, 47, 50, 52, 55, 58, 60, 71, 74, 75, 81], "littl": 81, "liu": 29, "liverpool": 33, "load": [68, 81], "locat": [29, 39], "log": [9, 31, 55, 56], "log_bm": 3, "log_lik": [9, 31], "log_likelihood": 9, "log_marginal_lik": 55, "log_posterior": 9, "log_prior": 9, "logarithm": 3, "loglik": [3, 9], "lognorm": [68, 69, 72], "logprior": 9, "loo": [52, 60, 61], "loo_error": 52, "loocv": [3, 39, 52, 61], "loocvscor": 60, "loop": 63, "low": 45, "lower": [17, 29, 32, 39, 45, 47], "lowest": 60, "ls3": 22, "l\u00fcthen": 33, "m": [7, 29, 33, 52, 55, 58, 68, 69, 73, 77, 78, 80], "machin": [42, 55, 58], "mackai": [25, 29], "mackei": 9, "mai": [24, 25, 26, 52, 55, 58], "mail": [22, 33], "main": [74, 80], "mainli": 72, "make": [9, 80, 81], "manag": 33, "mani": 13, "manner": [29, 72, 77], "manual": 33, "manuscript": 22, "map": [24, 25, 26, 52, 55, 60, 74], "mar": 54, "marelli": 33, "margin": [7, 39, 42, 47, 48, 49, 55, 56, 58, 72, 77, 81], "mark": [69, 73, 78], "markov": [3, 9], "mass": 42, "master": [10, 43, 55, 71, 77], "match": [52, 62, 69, 75, 80, 81], "math": 44, "mathcal": [7, 9, 80], "mathemat": 9, "matlab": [33, 42], "matrix": [3, 5, 7, 24, 25, 26, 31, 34, 52, 55, 58, 61, 62], "max": [65, 68, 69, 73, 76, 78], "max_a_post": [39, 81], "max_a_posteriori": 3, "max_deg": [34, 35, 36, 39, 47, 60], "max_func_itr": 39, "max_pce_deg": 39, "maxdepth": [], "maxim": [25, 29, 30, 55, 80], "maximis": [55, 58], "maximum": [3, 22, 25, 26, 30, 34, 35, 36, 37, 39, 45, 47, 55, 58, 60], "maxout": 17, "mc": [42, 65, 68, 69, 73, 74, 75, 76, 78, 81], "mc_criterion": 42, "mc_ref": 16, "mc_ref_dict": 16, "mc_ref_fil": 16, "mc_refer": 81, "mcmc": [3, 77, 81], "mcmc_param": [3, 9, 81], "mean": [3, 7, 9, 13, 16, 24, 25, 26, 27, 29, 31, 45, 52, 55, 58, 60, 80, 81], "mean_2": 81, "mean_pr": [9, 29, 60], "meas_fil": 16, "meas_file_valid": 16, "measur": [3, 7, 13, 16, 29, 81], "measured_data": 3, "measureddata": 60, "measurement_error": 81, "mechan": [24, 25, 26, 29, 52, 55], "merchant": [69, 73, 78], "messag": 73, "met": [55, 58], "meta": [3, 9, 13, 16, 24, 25, 26, 29, 52, 55, 60, 71], "meta_model_engin": [], "meta_model_typ": [39, 47, 60, 80, 81], "metadata": [24, 25, 26, 52, 55], "metadata_rout": [24, 25, 26, 52, 55], "metadatarequest": [24, 25, 26, 52, 55], "metamod": [29, 80], "metamodel": [3, 5, 13, 29, 39, 41, 47, 59, 72, 79, 81], "metamodel_train": 81, "metamodelengin": [], "metamodelopt": [60, 81], "method": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 38, 39, 42, 47, 49, 50, 52, 55, 58, 60, 65, 68, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81], "metric": [3, 81], "mgrid": 44, "mice": 29, "might": 81, "miketip": [55, 58], "minim": [26, 71], "minout": 17, "mix": 72, "mmse": 39, "mod_loo_threshold": [39, 81], "mode": [3, 52, 55, 58], "model": [3, 5, 7, 9, 13, 15, 16, 22, 24, 25, 26, 29, 33, 39, 42, 52, 55, 56, 58, 60, 70, 72, 77, 79], "model_comparison_al": 5, "model_dict": 5, "model_out_dict": 13, "model_weight": 5, "model_weights_dict": 5, "modelnam": 81, "modifi": [39, 52, 69, 73, 78], "modul": [0, 1, 11, 14, 18, 71], "modulu": 68, "mohammadi": [29, 33], "molina": 58, "moment": [13, 16, 35, 36, 50, 68, 77, 79, 81], "monomi": [43, 45], "mont": [3, 9, 16, 42, 81], "more": [13, 29, 60, 69, 71, 73, 78, 81], "most": [80, 81], "move": [3, 81], "mp": 16, "mu_pr": [24, 25, 26], "much": 76, "multi": [43, 45, 60, 62, 75, 77], "multi_process": 16, "multioutput": [24, 25, 26, 52, 55], "multioutputregressor": [24, 25, 26, 52, 55], "multipl": [7, 77, 81], "multipli": 7, "multiprocess": [3, 16, 81], "multivar": 3, "multivari": [3, 7, 31, 60, 61, 62], "must": 16, "mutual": 29, "n": [7, 33], "n_": 7, "n_bootstrap": 5, "n_bootstrap_itr": [3, 5, 60], "n_burn": 3, "n_cand_group": [39, 65, 69, 76, 81], "n_canddid": [39, 81], "n_candid": [29, 42, 65, 69, 76], "n_cpu": 16, "n_featu": [25, 26], "n_featur": [24, 25, 26, 52, 55, 58, 60, 61], "n_init_sampl": [60, 80, 81], "n_input": 60, "n_iter": [24, 25, 26, 55, 58], "n_iter_": 55, "n_kfold": 58, "n_m": 5, "n_max": [37, 60, 62], "n_max_sampl": [39, 81], "n_measur": [3, 9], "n_new_sampl": [32, 39, 81], "n_ob": [3, 5, 16], "n_out": 60, "n_output": [16, 24, 25, 26, 52, 55, 60], "n_param": [3, 7, 9, 10, 13, 16, 29, 36, 39, 42, 47, 60, 62, 63], "n_pca_compon": 60, "n_prior_sampl": 3, "n_replic": 39, "n_sampl": [3, 7, 9, 13, 16, 24, 25, 26, 29, 34, 35, 36, 39, 47, 52, 55, 56, 60, 61, 62, 63, 79, 81], "n_samples_fit": [24, 25, 26, 52, 55], "n_samples_test": [25, 26, 52, 55, 58], "n_step": [3, 10, 81], "n_term": [60, 62], "n_test_sampl": [24, 25, 26], "n_walker": [3, 10, 81], "nagel": 13, "name": [3, 5, 7, 9, 13, 16, 24, 25, 26, 39, 47, 49, 50, 52, 55, 72, 74, 77, 81], "nameerror": 29, "ndarrai": 45, "ndim": 81, "necessari": [16, 71, 77], "need": [3, 5, 7, 16, 29, 60, 71, 80, 81], "neg": [24, 25, 26, 52, 55], "neither": 13, "nest": [24, 25, 26, 40, 52, 55], "new": [16, 29, 39, 42, 49, 52, 60, 74, 81], "new_c_point": 16, "new_input_fil": 16, "new_metamodelopt": 60, "new_sampl": 42, "next": [16, 73, 77], "nips01": 55, "nnme": 81, "nois": [3, 5, 7, 25, 26, 55, 58, 78], "non": [42, 52, 55, 58], "none": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 36, 37, 39, 42, 45, 47, 49, 50, 52, 55, 60, 63, 65, 69, 76, 81], "nonlinear": 75, "nor": 13, "norm": [44, 60, 65, 68, 69, 72, 73, 75, 76, 78, 80, 81], "normal": [3, 5, 7, 25, 31, 52, 55, 60, 80, 81], "normpdf": [3, 9], "notat": 77, "note": [7, 16, 71, 81], "now": [39, 74, 80, 81], "nowak": [13, 22, 29, 81], "np": [16, 52, 55, 58, 60, 72, 74, 81], "npy": 81, "nsampl": [29, 60, 80, 81], "nu": 58, "nug_term": 63, "nugget": 63, "number": [3, 5, 7, 13, 16, 24, 25, 26, 29, 32, 39, 42, 45, 52, 55, 58, 60, 63, 65, 68, 69, 72, 73, 75, 76, 78, 80], "numer": 25, "numpi": [24, 25, 26, 44, 45, 52, 55, 58, 81], "numpoli": [43, 45], "o": 76, "oaklei": 76, "obj": [3, 7, 9, 13, 39, 42, 47, 49, 60], "object": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 39, 42, 47, 49, 50, 52, 55, 58, 60, 61, 63, 72, 74, 79, 80, 81], "obs_data": [3, 9], "obs_dict": 16, "obs_dict_valid": 16, "obsdata": 81, "observ": [3, 5, 7, 9, 16, 31, 74, 81], "obtain": [10, 60, 81], "off": [29, 39], "ohagan": [70, 71], "ol": 60, "oladyshkin": [13, 22, 29, 81], "old": [29, 42], "old_edi": 29, "old_edx": 29, "omit": 45, "omp": [69, 75], "onc": 81, "one": [3, 9, 10, 16, 25, 26, 32, 39, 45, 55, 56, 58, 60, 72, 81], "ong": 29, "onli": [3, 7, 9, 16, 24, 25, 26, 29, 39, 45, 52, 55, 58, 60, 72, 75, 81], "open": [71, 81], "oper": 42, "opposit": 45, "opt": [29, 39], "opt_col_point": 39, "opt_sigma": 3, "optim": [25, 29, 39, 55, 78], "optimi": 29, "optimum": 29, "option": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 36, 37, 39, 42, 47, 52, 55, 58, 60, 63, 71, 72, 74, 77, 81], "opts_dict": 5, "order": [45, 60, 77], "ordinari": 60, "org": [13, 42, 71], "orig_space_dist": [39, 47], "origin": [24, 25, 26, 52, 55, 60, 74, 79], "origmodeloutput_": 81, "orthogon": [37, 52, 61, 69, 75], "orthonorm": 22, "other": [3, 24, 25, 26, 52, 55, 71, 74, 77, 80], "otherwis": [9, 16, 24, 25, 26, 52, 55, 58, 60], "our": [74, 80, 81], "out": [3, 7, 17, 25, 26, 29, 39, 60, 79], "out_dict": 60, "out_dir": [3, 5, 9, 39], "out_nam": 39, "outpust": 13, "output": [3, 7, 9, 13, 16, 29, 39, 60, 65, 68, 69, 73, 74, 75, 76, 77, 78, 79, 80, 81], "output_bayes_": 81, "output_file_nam": 16, "output_nam": 16, "output_pars": 16, "outputdata": 16, "outputmatrix": 60, "outputs_comparison": 5, "outputs_postprocess": 13, "outputs_postprocessing_": 81, "outputs_postprocessing_calib": 79, "outputs_prior": 72, "over": [39, 63, 72], "overal": 71, "overfit": 81, "overflow": 25, "overview": [], "overwritten": [52, 55, 58], "own": [], "p": [7, 9, 13, 22, 30, 42, 44, 52], "pacif": 9, "packag": [3, 9, 66, 68, 70, 71, 77], "page": [71, 77], "pair": [5, 60], "pairwis": 77, "panda": [7, 81], "paper": [29, 55, 58], "parallel": [16, 29, 39, 60], "param": [16, 24, 25, 26, 37, 39, 47, 52, 55], "param_set": 16, "paramet": [49, 50, 65, 68, 69, 72, 73, 74, 75, 76, 77, 78, 80, 81], "parameterset": 9, "paramethr": 7, "paramt": 25, "paras": 16, "parmet": 3, "parser": [16, 68, 74], "part": [32, 60, 75, 76, 77, 81], "parti": 16, "particular": [69, 73, 78], "pass": [3, 16, 24, 25, 26, 39, 47, 52, 55, 81], "path": 16, "pati": 52, "pattern": [16, 55, 58], "pc": 59, "pca": 60, "pca_transform": 60, "pce": [13, 39, 47, 60, 68, 79, 80, 81], "pce_deg": [60, 80, 81], "pce_mean": 13, "pce_q_norm": [60, 80, 81], "pce_reg_method": [60, 80, 81], "pceengine_": 81, "pcemodel": [13, 20], "pcemodel_": [], "pcm_sampler": 39, "pd": 81, "pdf": [13, 55, 58], "peopl": 71, "per": [65, 69, 76], "percentag": 60, "percis": 39, "perfect": 25, "perfect_fit_tol": 25, "perform": [3, 5, 9, 13, 68, 69, 73, 75, 76, 77, 78, 79, 80, 81], "perform_bootstrap": 3, "perl": 60, "perturb": [3, 5], "perturbed_data": [3, 5], "pfaffenwaldr": [22, 33], "physic": [52, 61], "pip": [71, 77], "pipelin": [24, 25, 26, 52, 55], "pkl": 81, "place": 16, "pleas": [24, 25, 26, 52, 55, 69, 73, 78], "plot": [3, 5, 13, 39, 81], "plot_bayes_factor": 5, "plot_just_analysi": 5, "plot_log_bm": 3, "plot_map_pr": 3, "plot_model_weight": 5, "plot_moment": [13, 79, 81], "plot_nam": 5, "plot_post_param": 3, "plot_post_pr": [3, 81], "plot_sampl": [39, 72], "plot_seq_design_diagnost": [13, 79], "plot_typ": 13, "plote": 20, "plotmoment": [], "point": [3, 7, 16, 24, 25, 26, 29, 34, 35, 39, 42, 55, 58, 63, 72, 81], "poli": 37, "pollut": [70, 71], "poly_coeff": 35, "poly_typ": [34, 36, 37, 39, 47], "polynom": 60, "polynomi": [13, 22, 29, 33, 34, 35, 36, 37, 39, 47, 52, 60, 61, 62, 72, 79, 80, 81], "pop": 60, "popitem": 60, "posit": 30, "possibl": [24, 25, 26, 52, 55, 72], "post": [10, 13, 16, 71, 77], "post_descript": [], "post_process": [79, 81], "post_snapshot": [39, 81], "posterior": [3, 9, 25, 26, 39, 52, 55, 58, 81], "posterior_df": 9, "posteriori": [3, 39], "postpc": 81, "postproc": 79, "postprocess": [74, 77, 81], "potenti": 10, "pp": [9, 42, 52, 61, 76], "practic": [72, 77], "precis": [25, 26, 55, 58], "precomput": [24, 25, 26, 52, 55], "predict": [3, 9, 24, 25, 26, 29, 52, 55, 58, 60, 61, 81], "predict_dist": [24, 25, 26], "predit": 60, "prefer": [77, 81], "prepar": [16, 29, 77, 80], "prescrib": 39, "prescript": 60, "present": [22, 60, 80], "prevent": 25, "previou": [16, 81], "previous": 80, "prevrun_no": 16, "princip": [13, 60], "print": [25, 26, 29, 60], "prior": [3, 5, 7, 9, 26, 39, 46, 47, 58, 74, 77, 80, 81], "prior_": 81, "prior_output": 81, "prior_sampl": 3, "probabilist": [71, 76], "probabl": [30, 72], "probablist": 3, "proc": 33, "procedur": 3, "proceed": 52, "process": [9, 13, 16, 29, 58, 60, 63, 71, 77, 80], "produc": [69, 73, 78], "program": [69, 73, 78], "progress": [25, 26], "proj": 42, "project": 71, "propag": [52, 61], "properti": [65, 68, 69, 73, 75, 76, 77, 78, 79, 80, 81], "propos": [9, 40], "provid": [13, 24, 25, 26, 29, 39, 45, 47, 52, 55, 60, 65, 70, 71, 75, 77, 81], "psi": [52, 61, 62], "psrf": 10, "public": [9, 69, 73, 78], "publish": [69, 73, 78], "purpos": [69, 73, 78], "pursuit": [52, 69, 75], "py": [10, 16, 43, 55, 74, 81], "py_fil": [16, 74, 81], "pylink": [74, 77, 81], "pylinkforwardmodel": [71, 74], "pypi": 71, "python": [3, 13, 16, 71, 74, 77, 81], "python3": 77, "q": [30, 56, 60, 65, 68, 69, 73, 75, 76, 78, 80, 81], "qualiti": [13, 69, 73, 76, 79], "qualt": 3, "quantif": [22, 33], "question": [69, 73, 78], "quit": 81, "r": [7, 24, 25, 26, 52, 55, 58, 69, 76], "r2_score": [24, 25, 26, 52, 55], "r_2": 61, "r_hat": 10, "r_w": 69, "rais": [24, 25, 26, 52, 55, 60], "random": [29, 39, 42, 65, 72, 81], "random_sampl": 39, "randomli": [39, 81], "rang": [17, 37, 40, 74, 81], "rate": [26, 27, 69, 73], "ratio": 10, "raw": [16, 22, 39, 47], "raw_data": [39, 47], "read": [16, 29, 39, 74, 81], "read_from_fil": 39, "read_observ": 16, "read_output": 16, "readthedoc": 9, "realiti": 7, "realiz": [7, 72, 74], "realli": 3, "recalcul": 60, "recheck": 72, "reciev": 16, "recognit": [55, 58], "recomput": 56, "recurr": 37, "recurs": [37, 52], "redidu": 7, "redistribut": [69, 73, 78], "reduc": [45, 80], "reduct": [10, 60], "ref": [29, 55, 58], "ref_bme_kld": 13, "ref_typ": 71, "refer": [7, 13, 16, 30, 33, 60, 65, 68, 69, 73, 74, 75, 76, 78, 79, 81], "refin": 29, "refit": 29, "reg_method": 60, "regress": [9, 13, 24, 25, 26, 52, 55, 58, 60, 61, 65, 68, 69, 73, 75, 76, 78, 80, 81], "regressor": [24, 25, 26, 36, 52, 55, 60, 61, 62], "regressormixin": [24, 52, 55], "regresssor": 52, "reject": [3, 77, 81], "relat": [48, 71, 72, 80], "releas": [71, 73, 77, 80], "relev": [24, 25, 26, 52, 55, 72], "reli": 81, "reliabl": [13, 22], "remain": 76, "remov": [16, 60], "renam": 16, "repeat": 81, "replac": [16, 77, 80], "replic": 39, "report": [25, 26, 33], "repositori": [70, 77], "repres": 7, "represent": 80, "reproduc": 9, "req_output": [3, 9], "request": [3, 16, 24, 25, 26, 29, 39, 52, 55, 60], "requir": [3, 16, 37, 49], "research": [22, 42], "reshap": [44, 81], "residu": [7, 24, 25, 26, 52, 55, 61], "respect": [5, 60, 81], "respons": [24, 25, 26, 29, 39, 60], "ress": 22, "rest": 16, "result": [5, 16, 39, 60, 72, 73, 74, 79, 80, 81], "retain": [24, 25, 26, 52, 55], "retrain": 81, "retun": 29, "return": [44, 45, 74, 80, 81], "return_out_dict": 60, "return_sampl": 29, "return_std": [25, 26, 55, 58], "return_var": 10, "returnvar": 60, "revers": 45, "review": 29, "rezaiifar": 52, "ridg": 60, "rieckermann": 13, "risk": 33, "rmse": [13, 79, 81], "robin": 10, "root": [3, 9, 10, 13, 39, 81], "root_sampl": 80, "rosenblatt": [39, 47, 49, 72], "rossenblatt": 49, "rout": [24, 25, 26, 52, 55], "row": [9, 16], "rss": 25, "rst": [], "run": [9, 13, 16, 29, 39, 60, 68, 71, 74, 77, 78, 79, 81], "run_command": 16, "run_forwardmodel": 16, "run_model_parallel": [16, 74], "run_no": 29, "run_sampl": 9, "run_util_func": 29, "runtim": 60, "rvm_ard_model": 55, "rwmh": 10, "safeti": [13, 22, 33], "same": [16, 29, 39, 47, 72, 74, 75], "sampel": 72, "sampl": [3, 7, 9, 13, 16, 24, 25, 26, 29, 32, 35, 36, 38, 39, 42, 47, 52, 55, 60, 65, 68, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "sample_weight": [24, 25, 26, 52, 55], "sampler": [3, 9], "sampling_method": [29, 39, 72, 80, 81], "save": [29, 39, 69, 72, 79, 81], "savefig": 20, "sc": 33, "scalar": 7, "scale": 10, "scheme": [29, 39, 45, 60, 65, 69, 76, 78, 80], "scienc": 9, "scope": 16, "score": [24, 25, 26, 29, 39, 42, 52, 55, 60, 61], "scores_": 55, "script": [16, 22, 81], "search": [16, 29, 71], "second": [16, 72, 81], "section": [39, 55, 58, 81], "see": [13, 24, 25, 26, 39, 49, 52, 55, 69, 73, 75, 76, 78], "select": [3, 13, 16, 29, 42, 52, 55, 56, 60, 63], "selected_indic": [3, 9], "self": [24, 25, 26, 52, 55, 60], "sens": [58, 73, 78], "sensit": [13, 52, 61, 69, 73, 76, 81], "separ": [16, 39, 81], "sequenc": 44, "sequenti": [13, 16, 29, 39, 41, 42, 55, 60, 69, 71, 76, 79], "sergei": [22, 29], "serv": 16, "set": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 30, 32, 39, 40, 42, 45, 46, 52, 55, 58, 60, 62, 70, 71, 72, 74, 77, 79, 80], "set_config": [24, 25, 26, 52, 55], "set_param": [24, 25, 26, 52, 55], "set_predict_request": [25, 26, 55], "set_score_request": [24, 25, 26, 52, 55], "setdefault": 60, "setup": [5, 75], "setup_infer": 3, "sfu": [69, 73, 78], "shall": 60, "shallow": 60, "shape": [3, 5, 7, 9, 13, 16, 24, 25, 26, 27, 29, 34, 35, 36, 39, 42, 45, 47, 52, 55, 58, 60, 61, 62, 63], "share": 75, "shceme": 81, "shell": [16, 68, 74], "shell_command": 16, "short": 70, "shot": 60, "should": [3, 10, 16, 24, 25, 26, 44, 52, 55, 60, 69, 72, 73, 74, 78, 80, 81], "show": [65, 68, 75, 78, 81], "shown": 3, "sigma": [3, 7, 9, 29, 58, 81], "sigma2": [3, 9, 29, 58], "sigma2_prior": 7, "sigma2dict": 29, "sigma_": [55, 58], "sigma_f": 81, "signal": 52, "significantli": 76, "sim": 7, "simillar": 16, "simon": [69, 73, 78], "simpl": [24, 25, 26, 52, 55, 74, 80], "simpli": 3, "simplic": 7, "simul": [3, 9, 13, 16, 22, 42, 60, 81], "simulation_output": 16, "sinc": 81, "singl": [7, 9, 13, 74, 81], "singular": 52, "size": [24, 25, 26, 52, 55, 58, 81], "skbay": 55, "sklearn": [24, 25, 26, 52, 55], "sklearnpca": 60, "smaller": [25, 45, 76, 81], "smallest": 25, "so": [7, 24, 25, 26, 52, 55, 76, 77, 81], "sobol": [13, 39, 69, 72, 73, 76, 77, 79, 81], "sobol_cel": 13, "sobol_indic": [13, 79], "sobolindicespc": 81, "soc": 76, "societi": 9, "softwar": [16, 69, 73, 78], "solut": 81, "solver": 16, "some": [24, 25, 26, 39, 47, 52, 55, 63, 69, 77, 79, 80, 81], "sonja": [69, 73, 78], "soon": [29, 81], "sort": 45, "sourc": [10, 60, 71, 77], "space": [29, 39, 42, 46, 47, 60, 65, 68, 69, 73, 74, 75, 76, 77, 78, 80, 81], "sparemulti": 60, "spars": [13, 24, 25, 26, 52, 55, 58, 61, 80], "sparsex": 60, "sparsiti": [60, 81], "specif": [50, 60, 79], "specifi": [17, 29, 39, 60, 72, 80], "split": [77, 81], "springer": [55, 58], "squar": [3, 9, 10, 13, 24, 25, 26, 29, 52, 55, 60, 74, 81], "ssurjano": [69, 73, 78], "stabl": 9, "stackoverflow": 60, "stand": 3, "standard": [13, 16, 29, 60, 80, 81], "start": [3, 16, 29, 45, 55, 71, 80, 81], "start_engin": [29, 80, 81], "stat": [69, 73, 78], "static": [29, 65, 68, 69, 72, 73, 75, 76, 78, 81], "statist": 76, "std": [3, 9, 16, 29, 81], "std_2": 81, "std_pred": [9, 29, 60], "stdev": [9, 80], "step": [3, 16, 39, 65, 80], "step_snapshot": [39, 81], "still": [69, 81], "stochast": [13, 22], "stop": [39, 45], "store": [16, 81], "str": [3, 5, 7, 13, 16, 24, 25, 26, 29, 39, 42, 47, 52, 55, 60], "straightforward": 77, "strategi": [29, 42, 81], "string": [3, 13, 16, 29, 34, 36, 37, 39, 47, 50, 81], "structur": 77, "stuttgart": [22, 33, 71, 77], "sub": [24, 25, 26, 52, 55], "subdirectori": 16, "submatrix": 52, "subobject": [24, 25, 26, 52, 55], "successfulli": 16, "sudret": [13, 33, 52, 61, 81], "sum": [10, 24, 25, 26, 45, 52, 55], "sum_i": 44, "summari": [29, 60], "sumo": 42, "superclass": 24, "support": [3, 7, 39, 44, 60, 72], "surjanov": [69, 73, 78], "surrog": [16, 28, 29, 42, 60, 72, 77, 79], "surrogate_descript": [], "surrogate_model": [72, 77, 80, 81], "switzerland": 33, "sy": 81, "system": [13, 22, 33, 52], "t": [24, 25, 26, 42, 44, 52, 55], "t_l": 69, "t_u": 69, "tag": 81, "take": [74, 77, 81], "taken": 29, "target": [25, 26, 29, 52, 55, 58, 60, 61, 63], "tau": 78, "teach": 70, "tell": 80, "templat": 16, "term": [7, 25, 26, 37, 45, 63, 69, 73, 77, 78, 81], "termin": [55, 58], "test": [24, 25, 26, 52, 55, 58, 69, 78], "test_": 78, "test_analytical_funct": 81, "text": [7, 16], "textbf": 7, "th": 42, "than": [10, 44, 45], "thei": [72, 77, 81], "them": [16, 29, 77], "themselv": 81, "theorem": 9, "theori": 29, "therefor": [24, 25, 26, 45, 55, 58], "theta": [7, 9, 10, 40], "theta_": 7, "thi": [3, 7, 9, 10, 13, 16, 24, 25, 26, 39, 40, 42, 47, 52, 55, 58, 60, 62, 65, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "thing": 80, "third": 16, "though": [68, 81], "three": [5, 60, 75, 80, 81], "threshold": [25, 26, 39, 55, 58, 60], "through": [68, 77, 81], "thu": 19, "time": [5, 13, 16, 65, 68, 69, 73, 75, 76, 78, 81], "timestep": [60, 74], "tip": [55, 58, 71], "titl": 3, "toctre": [], "todo": [3, 29, 71, 72, 77], "tol": [24, 25, 26, 55, 56, 58], "tolist": 45, "tom": [3, 81], "toolbox": 42, "topic": 77, "total": [3, 13, 24, 25, 26, 45, 52, 55, 65, 68, 69, 73, 75, 76, 78, 79, 81], "total_sigma2": [3, 9], "total_sobol": [13, 81], "towardsdatasci": 13, "tpl": 16, "tr_x": [39, 47], "trade": [29, 39], "tradeoff": [65, 69, 76, 78, 81], "tradeoff_schem": [29, 39, 81], "tradeoff_weight": 29, "train": [3, 9, 13, 16, 28, 29, 36, 39, 41, 42, 52, 55, 60, 63, 71, 72, 77, 79], "train_error_model": 9, "train_norm": [29, 80, 81], "train_seq_design": 29, "train_sequenti": [29, 79, 81], "transact": 58, "transform": [16, 39, 47, 49, 60, 72], "transpos": 52, "tree": 71, "trine": 39, "true": [3, 5, 16, 17, 20, 24, 25, 26, 39, 40, 44, 52, 55, 58, 60, 72, 81], "truncat": [44, 45, 60, 65, 68, 69, 73, 75, 76, 78, 80, 81], "try": 25, "tsunami": 29, "tue": 54, "tupl": [16, 29, 32, 39, 45, 47, 60], "tutori": [65, 71, 75], "two": [13, 24, 25, 26, 30, 45, 55, 58, 60, 74, 78, 80, 81], "type": [3, 5, 7, 9, 13, 16, 25, 29, 31, 34, 36, 37, 39, 47, 50, 60, 65, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 81], "type_": 3, "typic": [10, 81], "u": [24, 25, 26, 52, 55, 80, 81], "ugent": 42, "um": 74, "umbridg": 16, "umbridge_model": 16, "uncertain": [7, 49, 50, 60, 72, 74, 77, 80], "uncertainti": [3, 22, 33, 52, 61, 71, 72, 77], "unchang": [24, 25, 26, 52, 55], "under": [69, 71, 73, 74, 77, 78], "underli": [], "understand": 79, "uni": [22, 33, 71, 77], "unif": [72, 81], "uniform": [49, 65, 68, 69, 72, 73, 78, 81], "uniform_averag": [24, 25, 26, 52, 55], "union": 45, "uniqu": [24, 25, 26], "unit": 33, "univ_basi": 60, "univ_basis_v": [39, 47, 60], "univ_p_v": 62, "univ_v": 36, "univari": [22, 35, 36, 60, 62], "univers": [33, 69, 73, 78], "universitaet": 22, "unknown": [3, 7, 9, 29], "unstabl": 25, "until": 39, "up": [3, 60, 62, 80], "updat": [16, 24, 25, 26, 52, 55, 58, 60], "update_input_param": 16, "update_pce_coeff": 60, "upper": [17, 29, 32, 39, 45, 47], "uq_bsc": 58, "uq_regress": 58, "uqlab": [33, 58], "urban": 13, "us": [3, 7, 9, 13, 16, 22, 24, 25, 26, 29, 39, 42, 44, 45, 47, 52, 55, 58, 60, 69, 70, 71, 72, 73, 74, 77, 78, 79, 80, 81], "use_bayes_set": 5, "user": [3, 5, 16, 24, 25, 26, 33, 39, 47, 52, 55, 71, 72, 80, 81], "util": [24, 25, 26, 29, 39, 43, 52, 55], "util_alphoptdesign": 29, "util_bayesianactivedesign": 29, "util_bayesiandesign": 29, "util_func": [29, 39, 81], "util_varbaseddesign": 29, "utilii": 39, "v": [3, 22, 24, 25, 26, 39, 47, 52, 55, 60], "v1": 33, "valid": [3, 13, 16, 39, 47, 60, 61, 72, 77, 79, 81], "valid_error": 13, "valid_metamodel": [13, 79, 81], "valid_metr": 3, "valid_model_run": 81, "valid_sampl": 81, "validlikelihoods_": 81, "valu": [3, 5, 7, 9, 10, 16, 17, 24, 25, 26, 34, 35, 45, 52, 55, 56, 58, 60, 61, 63, 65, 68, 72, 74, 80, 81], "valueerror": 62, "var": 29, "var_hat": [25, 26, 55, 58], "var_pca_threshold": 60, "var_pr": [24, 25, 26], "varbasedoptdesign": 39, "variabl": [25, 26, 52, 55, 58, 76, 81], "varianc": [3, 7, 10, 24, 25, 26, 55, 58, 60, 63, 65, 68, 76, 78], "variant": 80, "variat": [24, 26, 60], "varidx": [60, 63], "varieti": 74, "variou": [60, 81], "varoptdesign": [29, 39], "vbl": 60, "vector": [25, 26, 60], "venv": 77, "verbos": [3, 16, 24, 25, 26, 29, 52, 55, 58, 60, 81], "veri": [25, 74], "versa": 30, "version": [24, 25, 26, 42, 52, 55, 60, 69, 71, 73, 77, 78], "via": [5, 7, 9, 39, 47, 60, 68, 69, 72, 73, 74, 76, 77, 80, 81], "vice": 30, "view": 60, "virtual": 77, "visual": [5, 39, 72, 77, 79, 81], "voronoi": [39, 42, 81], "vulner": 33, "w": [9, 10, 13, 22, 24, 25, 26, 42, 52, 55], "wa": 60, "wai": [29, 60, 80, 81], "walker": 3, "want": [72, 79, 80, 81], "warranti": [69, 73, 78], "wavelet": 52, "wb": 81, "we": [7, 25, 69, 70, 73, 74, 78, 79, 80, 81], "wear": 9, "websit": 71, "weibul": 72, "weight": [5, 10, 24, 25, 26, 29, 39, 52, 55, 58, 77], "well": [10, 24, 25, 26, 52, 55], "were": 79, "what": [3, 7, 70, 80], "when": [3, 7, 9, 13, 16, 24, 25, 26, 30, 39, 52, 55, 58, 72, 81], "where": [5, 7, 24, 25, 26, 34, 35, 39, 44, 52, 55, 60, 72, 81], "whether": [5, 16, 39, 52, 55, 58], "which": [3, 16, 22, 24, 25, 26, 30, 58, 71, 81], "while": [45, 77, 79, 80, 81], "width": 68, "wiener": 37, "wight": 5, "wish": 16, "witch": 44, "within": [10, 16, 70], "without": [16, 68, 69, 73, 78, 81], "wolfgang": 29, "word": 16, "work": [16, 24, 25, 26, 52, 55, 69, 73, 78, 81], "workflow": [71, 81], "wors": [24, 25, 26, 52, 55], "would": [24, 25, 26, 52, 55], "wrapper": 16, "write": [], "written": 16, "wrong": 29, "www": [22, 33, 55, 58, 69, 73, 78], "x": [13, 16, 24, 25, 26, 31, 34, 35, 36, 39, 44, 47, 52, 53, 55, 58, 60, 63, 72, 74, 80, 81], "x1": 16, "x_1": [49, 50, 73, 81], "x_2": [73, 81], "x_3": 73, "x_axi": 13, "x_can": 29, "x_i": [44, 80], "x_mc": 29, "x_new": 29, "x_valu": [16, 20, 74], "xi": 16, "xiu": 81, "xlabel": 13, "xnew": 29, "xx": 16, "xxa": 55, "xya": 55, "y": [7, 9, 24, 25, 26, 39, 52, 53, 55, 60, 61, 63], "y_hat": [25, 26, 29, 52, 55, 58], "y_i": 80, "y_pc_val": 20, "y_pc_val_std": 20, "y_pred": [24, 25, 26, 52, 55, 60], "y_true": [24, 25, 26, 52, 55], "y_val": 20, "ye": [16, 65, 68, 78], "yet": 10, "yew": 29, "you": [7, 13, 16, 24, 25, 26, 52, 55, 66, 69, 73, 75, 76, 78], "young": 68, "your": [13, 69, 73, 76, 77], "yr": [69, 73], "z": 81, "zero": [30, 52, 55, 58], "zeromean": 7, "zip": 16, "zip_subdir": 16, "zurich": 33}, "titles": ["bayesvalidrox", "bayesvalidrox.bayes_inference", "bayesvalidrox.bayes_inference.bayes_inference", "bayesvalidrox.bayes_inference.bayes_inference.BayesInference", "bayesvalidrox.bayes_inference.bayes_model_comparison", "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison", "bayesvalidrox.bayes_inference.discrepancy", "bayesvalidrox.bayes_inference.discrepancy.Discrepancy", "bayesvalidrox.bayes_inference.mcmc", "bayesvalidrox.bayes_inference.mcmc.MCMC", "bayesvalidrox.bayes_inference.mcmc.gelman_rubin", "bayesvalidrox.post_processing", "bayesvalidrox.post_processing.post_processing", "bayesvalidrox.post_processing.post_processing.PostProcessing", "bayesvalidrox.pylink", "bayesvalidrox.pylink.pylink", "bayesvalidrox.pylink.pylink.PyLinkForwardModel", "bayesvalidrox.pylink.pylink.within_range", "bayesvalidrox.surrogate_models", "bayesvalidrox.surrogate_models.adaptPlot", "bayesvalidrox.surrogate_models.adaptPlot.adaptPlot", "bayesvalidrox.surrogate_models.apoly_construction", "bayesvalidrox.surrogate_models.apoly_construction.apoly_construction", "bayesvalidrox.surrogate_models.bayes_linear", "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression", "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression", "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression", "bayesvalidrox.surrogate_models.bayes_linear.gamma_mean", "bayesvalidrox.surrogate_models.engine", "bayesvalidrox.surrogate_models.engine.Engine", "bayesvalidrox.surrogate_models.engine.hellinger_distance", "bayesvalidrox.surrogate_models.engine.logpdf", "bayesvalidrox.surrogate_models.engine.subdomain", "bayesvalidrox.surrogate_models.eval_rec_rule", "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule", "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule_arbitrary", "bayesvalidrox.surrogate_models.eval_rec_rule.eval_univ_basis", "bayesvalidrox.surrogate_models.eval_rec_rule.poly_rec_coeffs", "bayesvalidrox.surrogate_models.exp_designs", "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns", "bayesvalidrox.surrogate_models.exp_designs.check_ranges", "bayesvalidrox.surrogate_models.exploration", "bayesvalidrox.surrogate_models.exploration.Exploration", "bayesvalidrox.surrogate_models.glexindex", "bayesvalidrox.surrogate_models.glexindex.cross_truncate", "bayesvalidrox.surrogate_models.glexindex.glexindex", "bayesvalidrox.surrogate_models.input_space", "bayesvalidrox.surrogate_models.input_space.InputSpace", "bayesvalidrox.surrogate_models.inputs", "bayesvalidrox.surrogate_models.inputs.Input", "bayesvalidrox.surrogate_models.inputs.Marginal", "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit", "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit", "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.corr", "bayesvalidrox.surrogate_models.reg_fast_ard", "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD", "bayesvalidrox.surrogate_models.reg_fast_ard.update_precisions", "bayesvalidrox.surrogate_models.reg_fast_laplace", "bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace", "bayesvalidrox.surrogate_models.surrogate_models", "bayesvalidrox.surrogate_models.surrogate_models.MetaModel", "bayesvalidrox.surrogate_models.surrogate_models.corr_loocv_error", "bayesvalidrox.surrogate_models.surrogate_models.create_psi", "bayesvalidrox.surrogate_models.surrogate_models.gaussian_process_emulator", "Active learning: iteratively expanding the training set", "Example: Analytical function", "API", "Bayesian inference and multi-model comparison", "Example: beam", "Example: borehole", "EXAMPLES", "Surrogate-assisted\u00a0Bayesian validation of computational models", "Priors, input space and experimental design", "Example: ishigami", "Models", "Example: model comparison", "Example: OHagan-function", "USER GUIDE", "Example: pollution", "Postprocessing", "Training surrogate models", "TUTORIAL"], "titleterms": {"1": 75, "3": 75, "activ": 64, "adaptplot": [19, 20], "also": 71, "an": 81, "analyt": 65, "api": 66, "apoly_construct": [21, 22], "argument": [29, 42], "assist": 71, "attribut": [3, 5, 7, 9, 13, 16, 25, 26, 39, 42, 47, 49, 50, 52, 55, 58, 60], "bay": [], "bayes_infer": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], "bayes_linear": [23, 24, 25, 26, 27], "bayes_model_comparison": [4, 5], "bayesian": [67, 71, 81], "bayesianlinearregress": 24, "bayesinfer": 3, "bayesmodelcomparison": 5, "bayesvalidrox": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "beam": 68, "borehol": 69, "check_rang": 40, "choic": [65, 68, 69, 73, 75, 76, 78], "class": 80, "comparison": [67, 75], "comput": 71, "contact": 71, "content": 71, "corr": 53, "corr_loocv_error": 61, "create_psi": 62, "cross_trunc": 44, "data": [65, 68, 69, 73, 76, 78, 81], "defin": 81, "descript": [], "design": [72, 81], "discrep": [6, 7, 65, 68], "eblinearregress": 25, "engin": [28, 29, 30, 31, 32, 80, 81], "eval_rec_rul": [33, 34, 35, 36, 37], "eval_rec_rule_arbitrari": 35, "eval_univ_basi": 36, "exampl": [49, 65, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80], "exp_design": [38, 39, 40], "expand": 64, "expdesign": 39, "experiment": [72, 81], "explor": [41, 42], "function": [65, 76], "further": 71, "gamma_mean": 27, "gaussian_process_emul": 63, "gelman_rubin": 10, "glexindex": [43, 44, 45], "guid": 77, "hellinger_dist": 30, "import": 81, "indic": 71, "infer": [67, 81], "input": [48, 49, 50, 72, 81], "input_spac": [46, 47], "inputspac": 47, "instal": [71, 77], "introductori": [], "ishigami": 73, "iter": 64, "l2_model": 75, "learn": 64, "librari": 81, "licens": 71, "link": 71, "logpdf": 31, "margin": 50, "mcmc": [8, 9, 10], "meta": 81, "meta_model_engin": [], "metamodel": [60, 65, 68, 69, 73, 75, 76, 78, 80], "model": [65, 67, 68, 69, 71, 73, 74, 75, 76, 78, 80, 81], "model1": 75, "multi": 67, "necessari": 81, "nl2_model": 75, "nl4_model": 75, "note": [24, 25, 26, 39, 52, 55, 60], "ohagan": 76, "option": 80, "orthogonal_matching_pursuit": [51, 52, 53], "orthogonalmatchingpursuit": 52, "overview": 77, "packag": [], "paramet": [3, 5, 7, 9, 10, 13, 16, 17, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 47, 52, 55, 58, 60, 61, 62, 63], "pollut": 78, "poly_rec_coeff": 37, "post": 81, "post_process": [11, 12, 13], "postprocess": [13, 79], "prior": [65, 68, 69, 72, 73, 76, 78], "priors1": 75, "probabilist": 81, "process": 81, "pylink": [14, 15, 16, 17, 65, 68, 69, 73, 75, 76, 78], "pylinkforwardmodel": [16, 81], "quickstart": 71, "rais": [13, 29, 62], "refer": [52, 55, 58], "reg_fast_ard": [54, 55, 56], "reg_fast_laplac": [57, 58], "regressionfastard": 55, "regressionfastlaplac": 58, "return": [3, 5, 7, 9, 10, 13, 16, 17, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 42, 47, 49, 52, 55, 58, 60, 61, 62, 63], "see": 71, "sequenti": 81, "set": [64, 65, 68, 69, 73, 75, 76, 78, 81], "space": 72, "subdomain": 32, "surrog": [65, 68, 69, 71, 73, 75, 76, 78, 80, 81], "surrogate_model": [18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "tabl": 71, "theori": [], "train": [64, 65, 68, 69, 73, 75, 76, 78, 80, 81], "tutori": 81, "uncertainti": 81, "update_precis": 56, "user": 77, "valid": 71, "vblinearregress": 26, "within_rang": 17}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"API": [[66, "api"]], "Active learning: iteratively expanding the training set": [[64, "active-learning-iteratively-expanding-the-training-set"]], "Arguments": [[29, "arguments"], [42, "arguments"], [42, "id2"]], "Attributes": [[3, "attributes"], [5, "attributes"], [7, "attributes"], [9, "attributes"], [13, "attributes"], [16, "attributes"], [25, "attributes"], [26, "attributes"], [39, "attributes"], [42, "attributes"], [47, "attributes"], [49, "attributes"], [50, "attributes"], [52, "attributes"], [55, "attributes"], [58, "attributes"], [60, "attributes"]], "Bayesian Inference": [[81, "bayesian-inference"]], "Bayesian inference and multi-model comparison": [[67, "bayesian-inference-and-multi-model-comparison"]], "Contribution": [[71, "contribution"]], "Define probabilistic input model": [[81, "define-probabilistic-input-model"]], "Define surrogate (meta) model": [[81, "define-surrogate-meta-model"]], "Define the data uncertainty": [[81, "define-the-data-uncertainty"]], "Define the model with PyLinkForwardModel": [[81, "define-the-model-with-pylinkforwardmodel"]], "Discrepancy": [[65, "id3"], [68, "id3"]], "EXAMPLES": [[70, "examples"]], "Example": [[64, "example"], [72, "example"], [74, "example"], [79, "example"], [80, "example"]], "Example: Analytical function": [[65, "example-analytical-function"]], "Example: OHagan-function": [[76, "example-ohagan-function"]], "Example: beam": [[68, "example-beam"]], "Example: borehole": [[69, "example-borehole"]], "Example: ishigami": [[73, "example-ishigami"]], "Example: model comparison": [[75, "example-model-comparison"]], "Example: pollution": [[78, "example-pollution"]], "Examples": [[49, "examples"]], "Exploration, exploitation and tradeoff": [[64, "exploration-exploitation-and-tradeoff"]], "Further contents": [[71, "further-contents"]], "Import necessary libraries": [[81, "import-necessary-libraries"]], "Indices and tables": [[71, "indices-and-tables"]], "Installation": [[71, "installation"], [77, "installation"]], "License": [[71, "license"]], "Links": [[71, "links"]], "MetaModel options": [[80, "metamodel-options"]], "MetaModel settings": [[65, "id4"], [68, "id4"], [69, "id3"], [73, "id3"], [75, "id7"], [76, "id3"], [78, "id3"]], "Model 1: L2_model": [[75, "model-1-l2-model"]], "Model 1: NL2_model": [[75, "model-1-nl2-model"]], "Model 1: NL4_model": [[75, "model-1-nl4-model"]], "Model and Data": [[65, "model-and-data"], [68, "model-and-data"], [69, "model-and-data"], [73, "model-and-data"], [76, "model-and-data"], [78, "model-and-data"]], "Models": [[74, "models"]], "Note": [[39, "note"], [60, "note"]], "Notes": [[24, "notes"], [25, "notes"], [26, "notes"], [52, "notes"], [55, "notes"]], "Overview": [[77, "overview"]], "Parameters": [[3, "parameters"], [3, "id2"], [3, "id4"], [3, "id7"], [5, "parameters"], [5, "id1"], [5, "id3"], [5, "id5"], [5, "id7"], [5, "id9"], [5, "id11"], [5, "id13"], [5, "id15"], [7, "parameters"], [9, "parameters"], [9, "id1"], [9, "id3"], [9, "id5"], [9, "id7"], [9, "id9"], [9, "id11"], [10, "parameters"], [13, "parameters"], [13, "id1"], [13, "id4"], [13, "id6"], [13, "id8"], [13, "id10"], [16, "parameters"], [16, "id2"], [16, "id4"], [16, "id6"], [16, "id8"], [16, "id10"], [16, "id12"], [17, "parameters"], [22, "parameters"], [24, "parameters"], [24, "id2"], [24, "id4"], [24, "id6"], [24, "id8"], [24, "id12"], [25, "id1"], [25, "id3"], [25, "id5"], [25, "id7"], [25, "id9"], [25, "id11"], [25, "id15"], [25, "id17"], [26, "id1"], [26, "id3"], [26, "id5"], [26, "id7"], [26, "id9"], [26, "id11"], [26, "id15"], [26, "id17"], [27, "parameters"], [29, "parameters"], [29, "id1"], [29, "id3"], [29, "id5"], [29, "id8"], [29, "id14"], [29, "id16"], [29, "id18"], [30, "parameters"], [31, "parameters"], [32, "parameters"], [34, "parameters"], [35, "parameters"], [36, "parameters"], [37, "parameters"], [39, "parameters"], [39, "id2"], [39, "id4"], [39, "id6"], [39, "id8"], [39, "id10"], [39, "id12"], [39, "id14"], [39, "id16"], [40, "parameters"], [47, "parameters"], [47, "id2"], [47, "id4"], [52, "parameters"], [52, "id1"], [52, "id2"], [52, "id5"], [52, "id7"], [52, "id9"], [52, "id11"], [52, "id13"], [52, "id17"], [55, "parameters"], [55, "id1"], [55, "id3"], [55, "id5"], [55, "id8"], [55, "id10"], [55, "id14"], [55, "id16"], [58, "parameters"], [58, "id1"], [60, "parameters"], [60, "id4"], [60, "id6"], [60, "id8"], [60, "id10"], [60, "id12"], [60, "id14"], [60, "id16"], [60, "id18"], [60, "id20"], [61, "parameters"], [62, "parameters"], [63, "parameters"]], "Parameters:": [[25, "parameters"], [26, "parameters"]], "Post-processing": [[81, "post-processing"]], "Postprocessing": [[79, "postprocessing"]], "Priors": [[65, "id2"], [68, "id2"], [69, "id2"], [73, "id2"], [76, "id2"], [78, "id2"]], "Priors, input space and experimental design": [[72, "priors-input-space-and-experimental-design"]], "Priors1": [[75, "id2"], [75, "id4"], [75, "id6"]], "Pylink model": [[65, "id1"], [68, "id1"], [69, "id1"], [73, "id1"], [76, "id1"], [78, "id1"]], "Pylink model1": [[75, "id1"], [75, "id3"], [75, "id5"]], "Quickstart": [[71, "quickstart"]], "Raises": [[13, "raises"], [29, "raises"], [62, "raises"]], "References": [[52, "references"], [55, "references"], [55, "id7"], [58, "references"], [58, "id2"]], "Returns": [[3, "returns"], [3, "id1"], [3, "id3"], [3, "id5"], [3, "id6"], [3, "id8"], [5, "returns"], [5, "id2"], [5, "id4"], [5, "id6"], [5, "id8"], [5, "id10"], [5, "id12"], [5, "id14"], [5, "id16"], [5, "id17"], [7, "returns"], [9, "returns"], [9, "id2"], [9, "id4"], [9, "id6"], [9, "id8"], [9, "id10"], [9, "id12"], [10, "returns"], [13, "returns"], [13, "id2"], [13, "id3"], [13, "id5"], [13, "id7"], [13, "id9"], [13, "id11"], [16, "returns"], [16, "id1"], [16, "id3"], [16, "id5"], [16, "id7"], [16, "id9"], [16, "id11"], [16, "id13"], [17, "returns"], [22, "returns"], [24, "returns"], [24, "id1"], [24, "id3"], [24, "id5"], [24, "id7"], [24, "id11"], [24, "id13"], [25, "returns"], [25, "id2"], [25, "id4"], [25, "id6"], [25, "id8"], [25, "id10"], [25, "id14"], [25, "id16"], [25, "id18"], [26, "returns"], [26, "id2"], [26, "id4"], [26, "id6"], [26, "id8"], [26, "id10"], [26, "id14"], [26, "id16"], [26, "id18"], [27, "returns"], [29, "returns"], [29, "id2"], [29, "id4"], [29, "id6"], [29, "id7"], [29, "id9"], [29, "id10"], [29, "id11"], [29, "id12"], [29, "id13"], [29, "id15"], [29, "id17"], [29, "id19"], [30, "returns"], [31, "returns"], [32, "returns"], [34, "returns"], [35, "returns"], [36, "returns"], [37, "returns"], [39, "returns"], [39, "id1"], [39, "id3"], [39, "id5"], [39, "id7"], [39, "id9"], [39, "id11"], [39, "id13"], [39, "id15"], [39, "id17"], [40, "returns"], [42, "returns"], [42, "id1"], [42, "id3"], [42, "id4"], [47, "returns"], [47, "id1"], [47, "id3"], [47, "id5"], [49, "returns"], [52, "returns"], [52, "id3"], [52, "id4"], [52, "id6"], [52, "id8"], [52, "id10"], [52, "id12"], [52, "id16"], [52, "id18"], [55, "returns"], [55, "id2"], [55, "id4"], [55, "id6"], [55, "id9"], [55, "id13"], [55, "id15"], [55, "id17"], [58, "returns"], [60, "returns"], [60, "id1"], [60, "id2"], [60, "id3"], [60, "id5"], [60, "id7"], [60, "id9"], [60, "id11"], [60, "id13"], [60, "id15"], [60, "id17"], [60, "id19"], [60, "id21"], [61, "returns"], [62, "returns"], [63, "returns"]], "Sequential training": [[81, "sequential-training"]], "Set the experimental design": [[81, "set-the-experimental-design"]], "Surrogate": [[65, "surrogate"], [68, "surrogate"], [69, "surrogate"], [73, "surrogate"], [76, "surrogate"], [78, "surrogate"]], "Surrogate-assisted\u00a0Bayesian validation of computational models": [[71, "surrogate-assisted-bayesian-validation-of-computational-models"]], "Surrogates 1-3": [[75, "surrogates-1-3"]], "TUTORIAL": [[81, "tutorial"]], "Train the surrogate with an engine": [[81, "train-the-surrogate-with-an-engine"]], "Training choices": [[65, "id5"], [68, "id5"], [69, "id4"], [73, "id4"], [75, "id8"], [76, "id4"], [78, "id4"]], "Training surrogate models": [[80, "training-surrogate-models"]], "Training with the engine": [[80, "training-with-the-engine"]], "USER GUIDE": [[77, "user-guide"]], "bayesvalidrox": [[0, "module-bayesvalidrox"]], "bayesvalidrox.bayes_inference": [[1, "module-bayesvalidrox.bayes_inference"]], "bayesvalidrox.bayes_inference.bayes_inference": [[2, "module-bayesvalidrox.bayes_inference.bayes_inference"]], "bayesvalidrox.bayes_inference.bayes_inference.BayesInference": [[3, "bayesvalidrox-bayes-inference-bayes-inference-bayesinference"]], "bayesvalidrox.bayes_inference.bayes_model_comparison": [[4, "module-bayesvalidrox.bayes_inference.bayes_model_comparison"]], "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison": [[5, "bayesvalidrox-bayes-inference-bayes-model-comparison-bayesmodelcomparison"]], "bayesvalidrox.bayes_inference.discrepancy": [[6, "module-bayesvalidrox.bayes_inference.discrepancy"]], "bayesvalidrox.bayes_inference.discrepancy.Discrepancy": [[7, "bayesvalidrox-bayes-inference-discrepancy-discrepancy"]], "bayesvalidrox.bayes_inference.mcmc": [[8, "module-bayesvalidrox.bayes_inference.mcmc"]], "bayesvalidrox.bayes_inference.mcmc.MCMC": [[9, "bayesvalidrox-bayes-inference-mcmc-mcmc"]], "bayesvalidrox.bayes_inference.mcmc.gelman_rubin": [[10, "bayesvalidrox-bayes-inference-mcmc-gelman-rubin"]], "bayesvalidrox.post_processing": [[11, "module-bayesvalidrox.post_processing"]], "bayesvalidrox.post_processing.post_processing": [[12, "module-bayesvalidrox.post_processing.post_processing"]], "bayesvalidrox.post_processing.post_processing.PostProcessing": [[13, "bayesvalidrox-post-processing-post-processing-postprocessing"]], "bayesvalidrox.pylink": [[14, "module-bayesvalidrox.pylink"]], "bayesvalidrox.pylink.pylink": [[15, "module-bayesvalidrox.pylink.pylink"]], "bayesvalidrox.pylink.pylink.PyLinkForwardModel": [[16, "bayesvalidrox-pylink-pylink-pylinkforwardmodel"]], "bayesvalidrox.pylink.pylink.within_range": [[17, "bayesvalidrox-pylink-pylink-within-range"]], "bayesvalidrox.surrogate_models": [[18, "module-bayesvalidrox.surrogate_models"]], "bayesvalidrox.surrogate_models.adaptPlot": [[19, "module-bayesvalidrox.surrogate_models.adaptPlot"]], "bayesvalidrox.surrogate_models.adaptPlot.adaptPlot": [[20, "bayesvalidrox-surrogate-models-adaptplot-adaptplot"]], "bayesvalidrox.surrogate_models.apoly_construction": [[21, "module-bayesvalidrox.surrogate_models.apoly_construction"]], "bayesvalidrox.surrogate_models.apoly_construction.apoly_construction": [[22, "bayesvalidrox-surrogate-models-apoly-construction-apoly-construction"]], "bayesvalidrox.surrogate_models.bayes_linear": [[23, "module-bayesvalidrox.surrogate_models.bayes_linear"]], "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression": [[24, "bayesvalidrox-surrogate-models-bayes-linear-bayesianlinearregression"]], "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression": [[25, "bayesvalidrox-surrogate-models-bayes-linear-eblinearregression"]], "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression": [[26, "bayesvalidrox-surrogate-models-bayes-linear-vblinearregression"]], "bayesvalidrox.surrogate_models.bayes_linear.gamma_mean": [[27, "bayesvalidrox-surrogate-models-bayes-linear-gamma-mean"]], "bayesvalidrox.surrogate_models.engine": [[28, "module-bayesvalidrox.surrogate_models.engine"]], "bayesvalidrox.surrogate_models.engine.Engine": [[29, "bayesvalidrox-surrogate-models-engine-engine"]], "bayesvalidrox.surrogate_models.engine.hellinger_distance": [[30, "bayesvalidrox-surrogate-models-engine-hellinger-distance"]], "bayesvalidrox.surrogate_models.engine.logpdf": [[31, "bayesvalidrox-surrogate-models-engine-logpdf"]], "bayesvalidrox.surrogate_models.engine.subdomain": [[32, "bayesvalidrox-surrogate-models-engine-subdomain"]], "bayesvalidrox.surrogate_models.eval_rec_rule": [[33, "module-bayesvalidrox.surrogate_models.eval_rec_rule"]], "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule": [[34, "bayesvalidrox-surrogate-models-eval-rec-rule-eval-rec-rule"]], "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule_arbitrary": [[35, "bayesvalidrox-surrogate-models-eval-rec-rule-eval-rec-rule-arbitrary"]], "bayesvalidrox.surrogate_models.eval_rec_rule.eval_univ_basis": [[36, "bayesvalidrox-surrogate-models-eval-rec-rule-eval-univ-basis"]], "bayesvalidrox.surrogate_models.eval_rec_rule.poly_rec_coeffs": [[37, "bayesvalidrox-surrogate-models-eval-rec-rule-poly-rec-coeffs"]], "bayesvalidrox.surrogate_models.exp_designs": [[38, "module-bayesvalidrox.surrogate_models.exp_designs"]], "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns": [[39, "bayesvalidrox-surrogate-models-exp-designs-expdesigns"]], "bayesvalidrox.surrogate_models.exp_designs.check_ranges": [[40, "bayesvalidrox-surrogate-models-exp-designs-check-ranges"]], "bayesvalidrox.surrogate_models.exploration": [[41, "module-bayesvalidrox.surrogate_models.exploration"]], "bayesvalidrox.surrogate_models.exploration.Exploration": [[42, "bayesvalidrox-surrogate-models-exploration-exploration"]], "bayesvalidrox.surrogate_models.glexindex": [[43, "module-bayesvalidrox.surrogate_models.glexindex"]], "bayesvalidrox.surrogate_models.glexindex.cross_truncate": [[44, "bayesvalidrox-surrogate-models-glexindex-cross-truncate"]], "bayesvalidrox.surrogate_models.glexindex.glexindex": [[45, "bayesvalidrox-surrogate-models-glexindex-glexindex"]], "bayesvalidrox.surrogate_models.input_space": [[46, "module-bayesvalidrox.surrogate_models.input_space"]], "bayesvalidrox.surrogate_models.input_space.InputSpace": [[47, "bayesvalidrox-surrogate-models-input-space-inputspace"]], "bayesvalidrox.surrogate_models.inputs": [[48, "module-bayesvalidrox.surrogate_models.inputs"]], "bayesvalidrox.surrogate_models.inputs.Input": [[49, "bayesvalidrox-surrogate-models-inputs-input"]], "bayesvalidrox.surrogate_models.inputs.Marginal": [[50, "bayesvalidrox-surrogate-models-inputs-marginal"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit": [[51, "module-bayesvalidrox.surrogate_models.orthogonal_matching_pursuit"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit": [[52, "bayesvalidrox-surrogate-models-orthogonal-matching-pursuit-orthogonalmatchingpursuit"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.corr": [[53, "bayesvalidrox-surrogate-models-orthogonal-matching-pursuit-corr"]], "bayesvalidrox.surrogate_models.reg_fast_ard": [[54, "module-bayesvalidrox.surrogate_models.reg_fast_ard"]], "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD": [[55, "bayesvalidrox-surrogate-models-reg-fast-ard-regressionfastard"]], "bayesvalidrox.surrogate_models.reg_fast_ard.update_precisions": [[56, "bayesvalidrox-surrogate-models-reg-fast-ard-update-precisions"]], "bayesvalidrox.surrogate_models.reg_fast_laplace": [[57, "module-bayesvalidrox.surrogate_models.reg_fast_laplace"]], "bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace": [[58, "bayesvalidrox-surrogate-models-reg-fast-laplace-regressionfastlaplace"]], "bayesvalidrox.surrogate_models.surrogate_models": [[59, "module-bayesvalidrox.surrogate_models.surrogate_models"]], "bayesvalidrox.surrogate_models.surrogate_models.MetaModel": [[60, "bayesvalidrox-surrogate-models-surrogate-models-metamodel"]], "bayesvalidrox.surrogate_models.surrogate_models.corr_loocv_error": [[61, "bayesvalidrox-surrogate-models-surrogate-models-corr-loocv-error"]], "bayesvalidrox.surrogate_models.surrogate_models.create_psi": [[62, "bayesvalidrox-surrogate-models-surrogate-models-create-psi"]], "bayesvalidrox.surrogate_models.surrogate_models.gaussian_process_emulator": [[63, "bayesvalidrox-surrogate-models-surrogate-models-gaussian-process-emulator"]]}, "docnames": ["_autosummary/bayesvalidrox", "_autosummary/bayesvalidrox.bayes_inference", "_autosummary/bayesvalidrox.bayes_inference.bayes_inference", "_autosummary/bayesvalidrox.bayes_inference.bayes_inference.BayesInference", "_autosummary/bayesvalidrox.bayes_inference.bayes_model_comparison", "_autosummary/bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison", "_autosummary/bayesvalidrox.bayes_inference.discrepancy", "_autosummary/bayesvalidrox.bayes_inference.discrepancy.Discrepancy", "_autosummary/bayesvalidrox.bayes_inference.mcmc", "_autosummary/bayesvalidrox.bayes_inference.mcmc.MCMC", "_autosummary/bayesvalidrox.bayes_inference.mcmc.gelman_rubin", "_autosummary/bayesvalidrox.post_processing", "_autosummary/bayesvalidrox.post_processing.post_processing", "_autosummary/bayesvalidrox.post_processing.post_processing.PostProcessing", "_autosummary/bayesvalidrox.pylink", "_autosummary/bayesvalidrox.pylink.pylink", "_autosummary/bayesvalidrox.pylink.pylink.PyLinkForwardModel", "_autosummary/bayesvalidrox.pylink.pylink.within_range", "_autosummary/bayesvalidrox.surrogate_models", "_autosummary/bayesvalidrox.surrogate_models.adaptPlot", "_autosummary/bayesvalidrox.surrogate_models.adaptPlot.adaptPlot", "_autosummary/bayesvalidrox.surrogate_models.apoly_construction", "_autosummary/bayesvalidrox.surrogate_models.apoly_construction.apoly_construction", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.gamma_mean", "_autosummary/bayesvalidrox.surrogate_models.engine", "_autosummary/bayesvalidrox.surrogate_models.engine.Engine", "_autosummary/bayesvalidrox.surrogate_models.engine.hellinger_distance", "_autosummary/bayesvalidrox.surrogate_models.engine.logpdf", "_autosummary/bayesvalidrox.surrogate_models.engine.subdomain", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule_arbitrary", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_univ_basis", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.poly_rec_coeffs", "_autosummary/bayesvalidrox.surrogate_models.exp_designs", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.ExpDesigns", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.check_ranges", "_autosummary/bayesvalidrox.surrogate_models.exploration", "_autosummary/bayesvalidrox.surrogate_models.exploration.Exploration", "_autosummary/bayesvalidrox.surrogate_models.glexindex", "_autosummary/bayesvalidrox.surrogate_models.glexindex.cross_truncate", "_autosummary/bayesvalidrox.surrogate_models.glexindex.glexindex", "_autosummary/bayesvalidrox.surrogate_models.input_space", "_autosummary/bayesvalidrox.surrogate_models.input_space.InputSpace", "_autosummary/bayesvalidrox.surrogate_models.inputs", "_autosummary/bayesvalidrox.surrogate_models.inputs.Input", "_autosummary/bayesvalidrox.surrogate_models.inputs.Marginal", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.corr", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.update_precisions", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_laplace", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.MetaModel", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.corr_loocv_error", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.create_psi", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.gaussian_process_emulator", "al_description", "analyticalfunction", "api", "bayes_description", "beam", "borehole", "examples", "index", "input_description", "ishigami", "model_description", "modelcomparison", "ohaganfunction", "packagedescription", "pollution", "post_description", "surrogate_description", "tutorial"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["_autosummary/bayesvalidrox.rst", "_autosummary/bayesvalidrox.bayes_inference.rst", "_autosummary/bayesvalidrox.bayes_inference.bayes_inference.rst", "_autosummary/bayesvalidrox.bayes_inference.bayes_inference.BayesInference.rst", "_autosummary/bayesvalidrox.bayes_inference.bayes_model_comparison.rst", "_autosummary/bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison.rst", "_autosummary/bayesvalidrox.bayes_inference.discrepancy.rst", "_autosummary/bayesvalidrox.bayes_inference.discrepancy.Discrepancy.rst", "_autosummary/bayesvalidrox.bayes_inference.mcmc.rst", "_autosummary/bayesvalidrox.bayes_inference.mcmc.MCMC.rst", "_autosummary/bayesvalidrox.bayes_inference.mcmc.gelman_rubin.rst", "_autosummary/bayesvalidrox.post_processing.rst", "_autosummary/bayesvalidrox.post_processing.post_processing.rst", "_autosummary/bayesvalidrox.post_processing.post_processing.PostProcessing.rst", "_autosummary/bayesvalidrox.pylink.rst", "_autosummary/bayesvalidrox.pylink.pylink.rst", "_autosummary/bayesvalidrox.pylink.pylink.PyLinkForwardModel.rst", "_autosummary/bayesvalidrox.pylink.pylink.within_range.rst", "_autosummary/bayesvalidrox.surrogate_models.rst", "_autosummary/bayesvalidrox.surrogate_models.adaptPlot.rst", "_autosummary/bayesvalidrox.surrogate_models.adaptPlot.adaptPlot.rst", "_autosummary/bayesvalidrox.surrogate_models.apoly_construction.rst", "_autosummary/bayesvalidrox.surrogate_models.apoly_construction.apoly_construction.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression.rst", "_autosummary/bayesvalidrox.surrogate_models.bayes_linear.gamma_mean.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.Engine.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.hellinger_distance.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.logpdf.rst", "_autosummary/bayesvalidrox.surrogate_models.engine.subdomain.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule_arbitrary.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.eval_univ_basis.rst", "_autosummary/bayesvalidrox.surrogate_models.eval_rec_rule.poly_rec_coeffs.rst", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.rst", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.ExpDesigns.rst", "_autosummary/bayesvalidrox.surrogate_models.exp_designs.check_ranges.rst", "_autosummary/bayesvalidrox.surrogate_models.exploration.rst", "_autosummary/bayesvalidrox.surrogate_models.exploration.Exploration.rst", "_autosummary/bayesvalidrox.surrogate_models.glexindex.rst", "_autosummary/bayesvalidrox.surrogate_models.glexindex.cross_truncate.rst", "_autosummary/bayesvalidrox.surrogate_models.glexindex.glexindex.rst", "_autosummary/bayesvalidrox.surrogate_models.input_space.rst", "_autosummary/bayesvalidrox.surrogate_models.input_space.InputSpace.rst", "_autosummary/bayesvalidrox.surrogate_models.inputs.rst", "_autosummary/bayesvalidrox.surrogate_models.inputs.Input.rst", "_autosummary/bayesvalidrox.surrogate_models.inputs.Marginal.rst", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.rst", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit.rst", "_autosummary/bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.corr.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_ard.update_precisions.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_laplace.rst", "_autosummary/bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.MetaModel.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.corr_loocv_error.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.create_psi.rst", "_autosummary/bayesvalidrox.surrogate_models.surrogate_models.gaussian_process_emulator.rst", "al_description.rst", "analyticalfunction.rst", "api.rst", "bayes_description.rst", "beam.rst", "borehole.rst", "examples.rst", "index.rst", "input_description.rst", "ishigami.rst", "model_description.rst", "modelcomparison.rst", "ohaganfunction.rst", "packagedescription.rst", "pollution.rst", "post_description.rst", "surrogate_description.rst", "tutorial.rst"], "indexentries": {}, "objects": {"": [[0, 0, 0, "-", "bayesvalidrox"]], "bayesvalidrox": [[1, 0, 0, "-", "bayes_inference"], [11, 0, 0, "-", "post_processing"], [14, 0, 0, "-", "pylink"], [18, 0, 0, "-", "surrogate_models"]], "bayesvalidrox.bayes_inference": [[2, 0, 0, "-", "bayes_inference"], [4, 0, 0, "-", "bayes_model_comparison"], [6, 0, 0, "-", "discrepancy"], [8, 0, 0, "-", "mcmc"]], "bayesvalidrox.bayes_inference.bayes_inference": [[3, 1, 1, "", "BayesInference"]], "bayesvalidrox.bayes_inference.bayes_inference.BayesInference": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "create_error_model"], [3, 2, 1, "", "create_inference"], [3, 2, 1, "", "normpdf"], [3, 2, 1, "", "perform_bootstrap"], [3, 2, 1, "", "plot_log_BME"], [3, 2, 1, "", "plot_post_params"], [3, 2, 1, "", "setup_inference"]], "bayesvalidrox.bayes_inference.bayes_model_comparison": [[5, 1, 1, "", "BayesModelComparison"]], "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison": [[5, 2, 1, "", "__init__"], [5, 2, 1, "", "cal_model_weight"], [5, 2, 1, "", "calc_bayes_factors"], [5, 2, 1, "", "calc_justifiability_analysis"], [5, 2, 1, "", "calc_model_weights"], [5, 2, 1, "", "generate_dataset"], [5, 2, 1, "", "model_comparison_all"], [5, 2, 1, "", "plot_bayes_factor"], [5, 2, 1, "", "plot_just_analysis"], [5, 2, 1, "", "plot_model_weights"], [5, 2, 1, "", "setup"]], "bayesvalidrox.bayes_inference.discrepancy": [[7, 1, 1, "", "Discrepancy"]], "bayesvalidrox.bayes_inference.discrepancy.Discrepancy": [[7, 2, 1, "", "__init__"], [7, 2, 1, "", "get_sample"]], "bayesvalidrox.bayes_inference.mcmc": [[9, 1, 1, "", "MCMC"], [10, 3, 1, "", "gelman_rubin"]], "bayesvalidrox.bayes_inference.mcmc.MCMC": [[9, 2, 1, "", "__init__"], [9, 2, 1, "", "eval_model"], [9, 2, 1, "", "log_likelihood"], [9, 2, 1, "", "log_posterior"], [9, 2, 1, "", "log_prior"], [9, 2, 1, "", "normpdf"], [9, 2, 1, "", "run_sampler"], [9, 2, 1, "", "train_error_model"]], "bayesvalidrox.post_processing": [[12, 0, 0, "-", "post_processing"]], "bayesvalidrox.post_processing.post_processing": [[13, 1, 1, "", "PostProcessing"]], "bayesvalidrox.post_processing.post_processing.PostProcessing": [[13, 2, 1, "", "__init__"], [13, 2, 1, "", "check_accuracy"], [13, 2, 1, "", "check_reg_quality"], [13, 2, 1, "", "compute_pce_moments"], [13, 2, 1, "", "plot_moments"], [13, 2, 1, "", "plot_seq_design_diagnostics"], [13, 2, 1, "", "sobol_indices"], [13, 2, 1, "", "valid_metamodel"]], "bayesvalidrox.pylink": [[15, 0, 0, "-", "pylink"]], "bayesvalidrox.pylink.pylink": [[16, 1, 1, "", "PyLinkForwardModel"], [17, 3, 1, "", "within_range"]], "bayesvalidrox.pylink.pylink.PyLinkForwardModel": [[16, 1, 1, "", "OutputData"], [16, 2, 1, "", "__init__"], [16, 2, 1, "", "read_observation"], [16, 2, 1, "", "read_output"], [16, 2, 1, "", "run_command"], [16, 2, 1, "", "run_forwardmodel"], [16, 2, 1, "", "run_model_parallel"], [16, 2, 1, "", "uMBridge_model"], [16, 2, 1, "", "update_input_params"], [16, 2, 1, "", "zip_subdirs"]], "bayesvalidrox.surrogate_models": [[19, 0, 0, "-", "adaptPlot"], [21, 0, 0, "-", "apoly_construction"], [23, 0, 0, "-", "bayes_linear"], [28, 0, 0, "-", "engine"], [33, 0, 0, "-", "eval_rec_rule"], [38, 0, 0, "-", "exp_designs"], [41, 0, 0, "-", "exploration"], [43, 0, 0, "-", "glexindex"], [46, 0, 0, "-", "input_space"], [48, 0, 0, "-", "inputs"], [51, 0, 0, "-", "orthogonal_matching_pursuit"], [54, 0, 0, "-", "reg_fast_ard"], [57, 0, 0, "-", "reg_fast_laplace"], [59, 0, 0, "-", "surrogate_models"]], "bayesvalidrox.surrogate_models.adaptPlot": [[20, 3, 1, "", "adaptPlot"]], "bayesvalidrox.surrogate_models.apoly_construction": [[22, 3, 1, "", "apoly_construction"]], "bayesvalidrox.surrogate_models.bayes_linear": [[24, 1, 1, "", "BayesianLinearRegression"], [25, 1, 1, "", "EBLinearRegression"], [26, 1, 1, "", "VBLinearRegression"], [27, 3, 1, "", "gamma_mean"]], "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression": [[24, 2, 1, "", "__init__"], [24, 2, 1, "", "fit"], [24, 2, 1, "", "get_metadata_routing"], [24, 2, 1, "", "get_params"], [24, 2, 1, "", "predict"], [24, 2, 1, "", "predict_dist"], [24, 2, 1, "", "score"], [24, 2, 1, "", "set_params"], [24, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression": [[25, 2, 1, "", "__init__"], [25, 2, 1, "", "fit"], [25, 2, 1, "", "get_metadata_routing"], [25, 2, 1, "", "get_params"], [25, 2, 1, "", "predict"], [25, 2, 1, "", "predict_dist"], [25, 2, 1, "", "score"], [25, 2, 1, "", "set_params"], [25, 2, 1, "", "set_predict_request"], [25, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression": [[26, 2, 1, "", "__init__"], [26, 2, 1, "", "fit"], [26, 2, 1, "", "get_metadata_routing"], [26, 2, 1, "", "get_params"], [26, 2, 1, "", "predict"], [26, 2, 1, "", "predict_dist"], [26, 2, 1, "", "score"], [26, 2, 1, "", "set_params"], [26, 2, 1, "", "set_predict_request"], [26, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.engine": [[29, 1, 1, "", "Engine"], [30, 3, 1, "", "hellinger_distance"], [31, 3, 1, "", "logpdf"], [32, 3, 1, "", "subdomain"]], "bayesvalidrox.surrogate_models.engine.Engine": [[29, 2, 1, "", "__init__"], [29, 2, 1, "", "choose_next_sample"], [29, 2, 1, "", "dual_annealing"], [29, 2, 1, "", "eval_metamodel"], [29, 2, 1, "", "run_util_func"], [29, 2, 1, "", "start_engine"], [29, 2, 1, "", "tradeoff_weights"], [29, 2, 1, "", "train_normal"], [29, 2, 1, "", "train_seq_design"], [29, 2, 1, "", "train_sequential"], [29, 2, 1, "", "util_AlphOptDesign"], [29, 2, 1, "", "util_BayesianActiveDesign"], [29, 2, 1, "", "util_BayesianDesign"], [29, 2, 1, "", "util_VarBasedDesign"]], "bayesvalidrox.surrogate_models.eval_rec_rule": [[34, 3, 1, "", "eval_rec_rule"], [35, 3, 1, "", "eval_rec_rule_arbitrary"], [36, 3, 1, "", "eval_univ_basis"], [37, 3, 1, "", "poly_rec_coeffs"]], "bayesvalidrox.surrogate_models.exp_designs": [[39, 1, 1, "", "ExpDesigns"], [40, 3, 1, "", "check_ranges"]], "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns": [[39, 2, 1, "", "__init__"], [39, 2, 1, "", "build_polytypes"], [39, 2, 1, "", "check_valid_inputs"], [39, 2, 1, "", "generate_ED"], [39, 2, 1, "", "generate_samples"], [39, 2, 1, "", "init_param_space"], [39, 2, 1, "", "pcm_sampler"], [39, 2, 1, "", "plot_samples"], [39, 2, 1, "", "random_sampler"], [39, 2, 1, "", "read_from_file"], [39, 2, 1, "", "transform"]], "bayesvalidrox.surrogate_models.exploration": [[42, 1, 1, "", "Exploration"]], "bayesvalidrox.surrogate_models.exploration.Exploration": [[42, 2, 1, "", "__init__"], [42, 2, 1, "", "approximate_voronoi"], [42, 2, 1, "", "get_exploration_samples"], [42, 2, 1, "", "get_mc_samples"], [42, 2, 1, "", "get_vornoi_samples"]], "bayesvalidrox.surrogate_models.glexindex": [[44, 3, 1, "", "cross_truncate"], [45, 3, 1, "", "glexindex"]], "bayesvalidrox.surrogate_models.input_space": [[47, 1, 1, "", "InputSpace"]], "bayesvalidrox.surrogate_models.input_space.InputSpace": [[47, 2, 1, "", "__init__"], [47, 2, 1, "", "build_polytypes"], [47, 2, 1, "", "check_valid_inputs"], [47, 2, 1, "", "init_param_space"], [47, 2, 1, "", "transform"]], "bayesvalidrox.surrogate_models.inputs": [[49, 1, 1, "", "Input"], [50, 1, 1, "", "Marginal"]], "bayesvalidrox.surrogate_models.inputs.Input": [[49, 2, 1, "", "__init__"], [49, 2, 1, "", "add_marginals"]], "bayesvalidrox.surrogate_models.inputs.Marginal": [[50, 2, 1, "", "__init__"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit": [[52, 1, 1, "", "OrthogonalMatchingPursuit"], [53, 3, 1, "", "corr"]], "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit": [[52, 2, 1, "", "__init__"], [52, 2, 1, "", "blockwise_inverse"], [52, 2, 1, "", "fit"], [52, 2, 1, "", "get_metadata_routing"], [52, 2, 1, "", "get_params"], [52, 2, 1, "", "loo_error"], [52, 2, 1, "", "predict"], [52, 2, 1, "", "score"], [52, 2, 1, "", "set_params"], [52, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.reg_fast_ard": [[55, 1, 1, "", "RegressionFastARD"], [56, 3, 1, "", "update_precisions"]], "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD": [[55, 2, 1, "", "__init__"], [55, 2, 1, "", "fit"], [55, 2, 1, "", "get_metadata_routing"], [55, 2, 1, "", "get_params"], [55, 2, 1, "", "log_marginal_like"], [55, 2, 1, "", "predict"], [55, 2, 1, "", "score"], [55, 2, 1, "", "set_params"], [55, 2, 1, "", "set_predict_request"], [55, 2, 1, "", "set_score_request"]], "bayesvalidrox.surrogate_models.reg_fast_laplace": [[58, 1, 1, "", "RegressionFastLaplace"]], "bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace": [[58, 2, 1, "", "__init__"], [58, 2, 1, "", "predict"]], "bayesvalidrox.surrogate_models.surrogate_models": [[60, 1, 1, "", "MetaModel"], [61, 3, 1, "", "corr_loocv_error"], [62, 3, 1, "", "create_psi"], [63, 3, 1, "", "gaussian_process_emulator"]], "bayesvalidrox.surrogate_models.surrogate_models.MetaModel": [[60, 2, 1, "", "__init__"], [60, 2, 1, "", "adaptive_regression"], [60, 2, 1, "", "add_InputSpace"], [60, 1, 1, "", "auto_vivification"], [60, 2, 1, "", "build_metamodel"], [60, 2, 1, "", "copy_meta_model_opts"], [60, 2, 1, "", "create_model_error"], [60, 2, 1, "", "eval_metamodel"], [60, 2, 1, "", "eval_model_error"], [60, 2, 1, "", "fit"], [60, 2, 1, "", "generate_polynomials"], [60, 2, 1, "", "pca_transformation"], [60, 2, 1, "", "regression"], [60, 2, 1, "", "univ_basis_vals"], [60, 2, 1, "", "update_pce_coeffs"]], "bayesvalidrox.surrogate_models.surrogate_models.MetaModel.auto_vivification": [[60, 2, 1, "", "clear"], [60, 2, 1, "", "copy"], [60, 2, 1, "", "fromkeys"], [60, 2, 1, "", "get"], [60, 2, 1, "", "items"], [60, 2, 1, "", "keys"], [60, 2, 1, "", "pop"], [60, 2, 1, "", "popitem"], [60, 2, 1, "", "setdefault"], [60, 2, 1, "", "update"], [60, 2, 1, "", "values"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function"}, "terms": {"": [9, 13, 16, 22, 24, 25, 26, 29, 33, 42, 52, 55, 56, 58, 60, 76, 81], "0": [3, 5, 7, 16, 24, 25, 26, 30, 44, 45, 49, 52, 55, 58, 60, 65, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81], "0001": 26, "001": [13, 25, 55], "002": 22, "01": 5, "032": 42, "045e": 79, "05": [3, 22, 42, 79], "06": 25, "07": [58, 79], "08": 51, "1": [3, 5, 9, 10, 13, 16, 24, 25, 26, 29, 30, 33, 34, 35, 36, 39, 42, 44, 45, 47, 49, 52, 55, 58, 60, 61, 62, 65, 68, 69, 71, 73, 76, 77, 78, 79, 80, 81], "10": [13, 22, 42, 44, 58, 65, 79, 80, 81], "100": [3, 26, 55, 60, 68, 72, 75, 76, 81], "1000": [5, 13, 58, 65, 81], "10000": 76, "100000": 3, "1016": [13, 22, 42], "104": 33, "106": [22, 29], "106737": 13, "11": [13, 42, 79], "12": [60, 65, 75], "125": 9, "13": 19, "14": [33, 51, 73, 76], "15": [51, 76, 79], "150": [65, 78, 81], "16": [39, 81], "171": 29, "179": 22, "18082457": 60, "182": 29, "19": [54, 58], "190": 22, "195": 13, "1993": 52, "1e": [25, 26, 39, 55, 58, 81], "1e5": 81, "2": [3, 7, 9, 13, 24, 25, 26, 29, 33, 39, 44, 45, 47, 52, 55, 58, 60, 61, 65, 68, 69, 73, 74, 75, 78, 79, 81], "200": [3, 73, 81], "2001": 55, "2002": 81, "2003": [55, 58], "2004": 76, "2006": [55, 58], "2009": [52, 58, 61], "2010": [9, 42], "2011": [13, 42, 52, 61, 81], "2012": [22, 81], "2013": [9, 69, 73, 78], "2014": 33, "2016": 29, "2017": 29, "2018": 29, "2020": [13, 19, 29, 54], "2021": 33, "2022": [33, 51], "2051": 42, "2055": 42, "214": 42, "22": 29, "224e": 79, "23": [24, 25, 26, 52, 55], "230": [52, 61], "2345": [52, 61], "2367": [52, 61], "24": [19, 54], "2554": 33, "2563": 33, "27": 13, "27th": 52, "2_": 81, "2d": [16, 31, 60], "2e": 3, "2nd": 33, "3": [3, 24, 25, 26, 37, 39, 42, 45, 47, 52, 55, 58, 65, 69, 71, 73, 76, 77, 80, 81], "30": 81, "300": [25, 55, 69], "306": 9, "332": 29, "382": 29, "4": [26, 33, 39, 45, 65, 68, 69, 75, 76, 78, 81], "40": 52, "406e": 79, "407": 29, "41": 54, "44": 52, "45": 54, "46": 19, "5": [9, 25, 29, 49, 65, 69, 72, 73, 76, 79, 81], "50": 69, "500": [76, 81], "5000": 69, "500000": 3, "513e": 79, "53": 58, "59": 51, "5a": 22, "6": [45, 52, 61, 68], "61": 33, "63": 58, "65": [9, 76], "651879": 60, "66": 76, "683": 42, "696": 42, "7": [58, 60, 76], "70569": [22, 33], "75": [68, 81], "751": 76, "769": 76, "8": [29, 69, 78], "80": 9, "85": [65, 80], "890": 29, "9": [71, 77, 80, 81], "925": 9, "99": 60, "999": 60, "A": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 33, 39, 42, 47, 49, 52, 55, 56, 58, 60, 65, 69, 71, 73, 74, 75, 78, 79, 81], "As": 81, "FOR": [69, 73, 78], "For": [7, 10, 13, 24, 25, 26, 39, 52, 55, 60, 69, 73, 74, 78, 80, 81], "If": [3, 7, 9, 13, 16, 24, 25, 26, 39, 40, 45, 47, 49, 52, 55, 58, 60, 69, 71, 72, 73, 77, 78, 80, 81], "In": [3, 7, 42, 60, 64, 72, 74, 80, 81], "It": [16, 29, 60, 77], "Its": 74, "NO": [69, 73, 78], "NOT": [69, 73, 78], "No": [29, 69, 73, 75, 76, 78], "OF": [69, 73, 78], "OR": [69, 73, 78], "One": [29, 60], "THE": [69, 73, 78], "THERE": [69, 73, 78], "The": [3, 5, 7, 9, 10, 13, 16, 22, 24, 25, 26, 29, 30, 36, 37, 39, 40, 42, 44, 45, 47, 50, 52, 55, 60, 61, 63, 64, 68, 70, 71, 72, 74, 75, 77, 79, 80, 81], "Then": [77, 80], "There": 60, "These": [80, 81], "To": [60, 79], "Will": 39, "With": [7, 74, 80, 81], "_": [7, 80], "__": [24, 25, 26, 52, 55], "__init__": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 39, 42, 47, 49, 50, 52, 55, 58, 60], "_i": 7, "aa": 55, "ab": [34, 37], "about": 70, "abov": [3, 75], "absolut": [55, 58], "abstract": [24, 55], "accept": [60, 81], "accord": [80, 81], "accordingli": [69, 73, 78], "account": 77, "accuraci": [13, 77, 79, 81], "accuracycheckmetamodel": 81, "achiev": 30, "activ": [3, 29, 39, 56, 65, 68, 73, 77, 78, 79, 80, 81], "active_": [52, 55, 58], "actual": [16, 29, 80, 81], "ad": [24, 25, 26, 52, 55, 56, 72], "adapt": [16, 29, 42, 52, 60, 61, 64], "adapt_verbos": 39, "adaptive_regress": 60, "add": [49, 81], "add_expdesign": [], "add_inputspac": 60, "add_margin": [49, 72, 81], "addit": [7, 16, 64, 81], "addition": [69, 72, 73, 78], "adopt": 81, "advwatr": 13, "affin": 9, "after": 64, "again": [16, 81], "against": [17, 72, 77, 79], "ai": 9, "ainv": 52, "al": [3, 64, 65, 69, 76], "al_descript": [], "alc": 29, "alg": 58, "algorithm": [29, 52, 55, 58, 60], "alia": [24, 25, 26, 52, 55], "all": [3, 5, 13, 16, 17, 24, 25, 26, 29, 36, 39, 47, 52, 55, 60, 62, 71, 72, 75, 77, 79, 81], "all_candid": 42, "all_just_data": 5, "all_output": 16, "allow": [16, 24, 25, 26, 52, 55, 74, 79, 81], "alm": 29, "almost": 76, "along": [29, 36, 60, 81], "alpha": 25, "alpha_": [25, 26, 55, 58], "alphabet": [29, 39], "alreadi": [52, 55, 58], "also": [29, 39, 60, 64, 80, 81], "altern": [29, 80], "alwai": [24, 25, 26, 45, 52, 55], "amazaspshumik": 55, "an": [3, 7, 9, 10, 13, 16, 24, 25, 26, 29, 39, 42, 47, 50, 52, 55, 60, 64, 68, 71, 72, 74, 75, 77, 78, 79, 80], "analysi": [3, 5, 13, 16, 33, 52, 55, 60, 61, 69, 73, 76, 77, 80, 81], "analyt": [70, 81], "analytical_funct": 81, "analyticfunc": 81, "anaylsi": 13, "angl": [52, 60, 61, 80], "ani": [3, 52, 60, 64, 69, 73, 78, 81], "anneal": [39, 64], "anoth": [16, 42, 81], "apc": [22, 59, 60, 65, 69, 72, 73, 75, 76, 78, 79, 80, 81], "api": 71, "apoly_coeff": 36, "app": 39, "appli": [9, 29, 60, 72, 80], "applic": [13, 37, 52, 79], "apply_constraint": 60, "approach": [10, 29, 76], "approxim": [3, 9, 26, 42, 52, 79, 80, 81], "approximate_voronoi": 42, "ar": [3, 5, 7, 9, 10, 13, 16, 17, 24, 25, 26, 29, 34, 35, 39, 44, 45, 52, 55, 60, 64, 70, 72, 74, 75, 76, 77, 79, 80, 81], "arang": 81, "arbitrari": [22, 60, 80, 81], "arbitrarili": [24, 25, 26, 52, 55], "ard": [55, 60, 80], "area": 42, "arg": [3, 44, 45], "argument": [3, 16, 62, 81], "around": 81, "arrai": [3, 5, 7, 9, 10, 13, 16, 17, 22, 24, 25, 26, 29, 30, 31, 34, 35, 36, 39, 40, 42, 44, 45, 47, 50, 52, 55, 58, 60, 61, 62, 63, 74], "array_lik": 31, "asilomar": 52, "askei": 37, "aspect": 77, "assembl": 62, "asset": 10, "assign": [3, 30, 39], "assist": [65, 78], "associ": [38, 42, 64, 65, 68, 69, 72, 73, 75, 76, 78, 80, 81], "assum": [16, 26, 45, 69, 73, 78, 81], "astronom": 9, "asumpt": 5, "attribut": [72, 80], "aug": 19, "author": [19, 22, 33, 51, 54, 69, 73, 78], "auto_vivif": 60, "automat": [55, 72, 81], "autoselect": 63, "autovivif": 60, "aux_fil": 16, "auxiliari": 16, "avail": [3, 7, 16, 39, 47, 50, 60, 64, 68, 71, 77, 80, 81], "avali": 49, "averag": 5, "avoid": 81, "axi": [13, 45, 74], "b": [3, 7, 10, 13, 26, 27, 33, 52, 60, 61, 74, 76, 79], "b_i": 44, "babacan": 58, "bal": [29, 65], "bar": 13, "barro": 13, "base": [3, 5, 7, 9, 13, 16, 22, 24, 25, 26, 29, 31, 33, 35, 36, 39, 42, 47, 49, 50, 52, 55, 56, 58, 60, 61, 64, 72, 75, 77, 78, 80, 81], "basi": [22, 62], "basic": [77, 81], "basis_indic": [60, 62], "bay": [3, 5, 9, 24, 25, 55, 77], "bayes_": 81, "bayes_env": 77, "bayes_inf": [], "bayes_infer": 81, "bayes_loocv": 3, "bayes_pc": 81, "bayesactdesign": [29, 39, 81], "bayesfactor": 5, "bayesian": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 55, 58, 60, 64, 65, 73, 76, 77, 78, 80], "bayesian3": [29, 64], "bayesianlinearregress": [25, 26], "bayesinfer": [5, 81], "bayesopt": [9, 81], "bayesoptdesign": [29, 39], "bayesvalidrox": [64, 66, 68, 70, 71, 72, 74, 77, 79, 80, 81], "bc": [58, 73, 78], "beam": [70, 74], "beam9point": 68, "becaus": [24, 25, 26, 52, 55], "beck": 29, "been": [16, 39], "befor": [16, 29, 60, 80, 81], "beforehand": 39, "behaviour": 80, "being": [3, 9, 16, 64], "below": [55, 58], "best": [24, 25, 26, 52, 55, 60, 63, 77], "beta": [55, 72], "beta_": [25, 26], "better": 25, "between": [10, 17, 30, 60, 64, 81], "bia": [25, 26], "bias_input": [9, 81], "bias_term": 58, "biasinput": 9, "bin": 77, "binder": 16, "bingham": [69, 73, 78], "bishop": [55, 58], "bit": 81, "blatman": [52, 61, 81], "blob": [10, 43, 55], "blockwise_invers": 52, "bm": 5, "bmc": 3, "bme": [3, 5, 13, 81], "bme_dict": 5, "bonu": [], "bool": [3, 5, 16, 17, 24, 25, 26, 29, 39, 40, 45, 47, 49, 52, 55, 58, 60, 63], "boolean": [25, 44, 52, 55, 58], "bootstrap": [3, 5, 60, 65, 78, 80], "bootstrap_method": 60, "bootstrap_nois": 3, "borehol": 70, "both": [10, 44, 45, 79, 81], "bound": [17, 29, 32, 39, 44, 45, 47], "bound_tupl": [39, 47], "boundari": 29, "bridg": 74, "brief": 77, "broad": [25, 74, 80], "brr": [60, 80], "bug": 81, "build": [29, 60, 72, 77, 80], "build_metamodel": 60, "build_polytyp": [39, 47], "built": [46, 80], "burn": 3, "bvr": 71, "c": [24, 26, 40, 52, 55, 58], "c_point": 16, "ca": [69, 73, 78], "cai": 29, "cal_model_weight": 5, "calc_bayes_factor": 5, "calc_justifiability_analysi": 5, "calc_model_weight": 5, "calcul": [3, 5, 9, 24, 25, 26, 29, 39, 47, 52, 55, 58, 61, 72, 77, 79, 81], "calib": [3, 13, 16], "calibr": [3, 7, 13, 16, 65, 78, 81], "call": [10, 15, 16, 24, 25, 26, 52, 55, 60, 64, 80, 81], "calss": 16, "cambridg": 42, "can": [3, 7, 13, 16, 24, 25, 26, 29, 44, 49, 52, 55, 60, 64, 66, 68, 69, 70, 71, 72, 73, 74, 77, 78, 80, 81], "candid": [29, 39, 42], "captur": 80, "carlo": [3, 9, 16, 42, 81], "case": [3, 7, 13, 16, 25, 42, 60], "cd": 77, "cell": 42, "center": [42, 52, 55, 58], "chain": [3, 9, 10], "chair": 33, "chang": [13, 24, 25, 26, 52, 55, 58, 64], "chao": [13, 22, 29, 33, 52, 60, 61, 79, 80, 81], "chaospi": [39, 47], "characteris": [25, 26, 55, 58], "characterist": [65, 68], "chart": 13, "cheap": 81, "chebyshev": [39, 72], "check": [3, 13, 16, 17, 24, 25, 26, 39, 40, 47, 52, 55, 69, 71, 72, 73, 76, 77, 79, 81], "check_accuraci": [13, 79], "check_reg_qu": 13, "check_valid_input": [39, 47], "chemic": 29, "choic": 64, "choos": [29, 64, 77, 81], "choose_next_sampl": 29, "chosen": [3, 64, 76, 80, 81], "cite": 81, "class": [2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 16, 23, 24, 25, 26, 28, 29, 38, 39, 41, 42, 46, 47, 48, 49, 50, 51, 52, 54, 55, 57, 58, 59, 60, 64, 71, 72, 74, 77, 79, 80, 81], "classic": 37, "clear": 60, "clearli": [69, 73, 78], "clermont": [52, 61], "clf": 61, "clf_bia": 56, "clone": 77, "code": [16, 81], "coef_": [25, 26, 52, 55, 58], "coeff": [52, 61], "coeffic": 60, "coeffici": [22, 24, 25, 26, 35, 36, 37, 52, 55, 58, 60, 61, 76, 81], "coffici": [52, 61], "cohn": 29, "collaps": 42, "colloc": [16, 39], "column": [16, 81], "com": [10, 13, 43, 55, 58, 60], "combin": [10, 52, 60, 80, 81], "command": [16, 42, 68, 74], "comment": [69, 73, 78], "common": 49, "commun": 9, "compar": [3, 9, 16, 60, 77, 79], "comparison": [5, 39, 70, 71, 77, 79, 81], "complet": 74, "complex": 76, "compon": [13, 24, 25, 26, 52, 55, 60, 80], "compress": [58, 73, 78], "comput": [9, 13, 25, 26, 27, 29, 31, 35, 36, 37, 42, 52, 55, 58, 60, 61, 77, 79, 81], "compute_pce_mo": 13, "compute_scor": 55, "computed_scor": 55, "conf": 33, "confer": 52, "confus": 5, "confusion_matrix": 5, "consid": [7, 45, 72, 80, 81], "consist": [24, 25, 26, 52, 55, 80], "consol": 79, "constant": [24, 25, 26, 52, 55], "constraint": 60, "construct": [22, 72], "contact": 71, "contain": [3, 5, 9, 16, 24, 25, 26, 29, 39, 47, 50, 52, 55, 60, 72, 74, 77, 78, 81], "context": 7, "contibut": 71, "continu": 30, "contribut": 76, "converg": [10, 25, 26, 81], "convini": 60, "coordin": [16, 60], "copi": [16, 25, 52, 55, 58, 60], "copy_meta_model_opt": 60, "copy_x": [24, 25, 26, 52, 55, 58], "copyright": [69, 73, 78], "core": 81, "corner": 3, "corner_title_fmt": 3, "correct": [52, 61], "correl": 75, "correspond": [13, 16, 24, 25, 26, 34, 42, 50, 60, 72, 77, 79, 80], "cosin": 75, "cost": 80, "couckuyt": 42, "count": 45, "cov": 31, "covari": [3, 7, 9, 25, 26, 31, 55, 58], "cpu": 16, "creat": [3, 5, 16, 19, 33, 39, 42, 47, 51, 54, 60, 68, 72, 74, 77, 80, 81], "create_error_model": 3, "create_infer": [3, 81], "create_metamodel": [], "create_model_error": 60, "credit": 43, "crieterion": 42, "criteria": 44, "criterion": 29, "crombecq": 42, "cross": [3, 39, 45, 60, 64], "cross_trunc": 45, "csv": 16, "currecnt": 16, "current": [16, 22, 64, 77], "d": [9, 26, 29, 39, 42, 52, 58, 60, 78, 80], "data": [3, 5, 9, 16, 17, 22, 24, 25, 26, 31, 39, 47, 49, 50, 52, 55, 58, 60, 64, 72, 75, 77, 80], "data_noise_level": 5, "datafram": [3, 7, 9, 16, 81], "dataset": 80, "dbingham": [69, 73, 78], "de": [13, 22, 33, 71, 77], "deafault": 25, "deal": [69, 73, 76], "decai": 29, "decomposit": 52, "decreas": [29, 64, 78], "deep": [24, 25, 26, 52, 55], "def": 74, "default": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 36, 37, 39, 42, 47, 50, 52, 55, 58, 60, 63], "defin": [3, 5, 7, 10, 16, 24, 25, 26, 32, 34, 39, 42, 49, 52, 55, 60, 64, 72, 74, 77, 80], "definit": [7, 22, 72, 81], "deflect": 68, "degre": [22, 34, 35, 36, 37, 39, 47, 60, 65, 68, 69, 73, 75, 76, 78, 80, 81], "delet": 56, "demeest": 42, "denot": 74, "depart": [22, 33], "depend": [25, 26, 49, 65, 68, 69, 73, 75, 76, 78, 80], "deprec": [80, 81], "depth": 71, "derek": [69, 73, 78], "deriv": [69, 73, 78], "describ": [58, 71, 72, 77, 81], "descrip": 7, "descript": [3, 5, 9, 16, 29, 31, 60, 71, 77], "design": [13, 16, 29, 38, 39, 42, 60, 62, 64, 65, 74, 77, 78, 80], "detail": [13, 65, 69, 72, 73, 75, 77, 78], "determin": [24, 25, 26, 52, 55], "deviat": [13, 16, 60, 64, 80, 81], "deviatioon": [29, 60], "dhaen": 42, "diagnost": 79, "diagon": [3, 7, 9], "dict": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 35, 36, 37, 52, 55, 60], "dictionari": [3, 5, 9, 13, 16, 29, 60, 74, 81], "differ": [30, 60, 71, 75, 81], "dim": 60, "dim_red_method": 60, "dimens": [45, 52], "dimension": [25, 26, 55, 58, 60, 74, 80], "dir_nam": 16, "direct": [36, 60, 80], "directi": 81, "directli": [72, 80, 81], "directori": [13, 16, 81], "disc_typ": 7, "discoutputopt": 81, "discrep": [3, 9, 81], "discrepancyopt": 81, "discuss": 81, "displai": [13, 81], "disregard": [24, 25, 26, 52, 55], "disrep": 7, "dissert": [52, 61], "dist": [3, 39, 47], "dist_typ": [49, 50, 72, 81], "distanc": 30, "distibut": 5, "distribut": [3, 7, 9, 24, 25, 26, 27, 30, 31, 39, 46, 47, 48, 50, 52, 55, 58, 60, 65, 68, 69, 72, 73, 75, 76, 78, 80, 81], "diverg": [3, 13, 39], "divid": 32, "dkl": [29, 39, 65, 81], "do": [13, 29, 62, 69, 73, 77, 78, 81], "doc": [], "doctor": [52, 61], "document": 71, "doe": [16, 60, 68], "doi": [13, 22, 42], "domain": [32, 42], "done": [16, 39, 60, 81], "doostan": 29, "dot": 80, "dpp": 39, "dr": 22, "drainag": 13, "drawn": [3, 81], "driven": 22, "dtype": [52, 55, 58], "dual": [39, 64], "dual_ann": 29, "due": 73, "dump": 81, "dure": [60, 79, 80], "e": [3, 7, 9, 16, 22, 24, 25, 26, 33, 39, 42, 45, 47, 52, 55, 58, 60, 63, 71, 74], "each": [3, 5, 7, 9, 13, 16, 24, 25, 26, 32, 39, 42, 44, 45, 50, 52, 55, 58, 60, 70, 74, 77, 81], "earlier": 81, "easi": 74, "easili": 81, "ebl": [60, 80], "ed_i": 60, "effect": [7, 24, 25, 26, 52, 55, 56, 76], "effici": [13, 42], "eigenvalu": [25, 26], "eigenvector": [25, 26], "eigf": 39, "eigvals_": [25, 26], "eigvecs_": [25, 26], "either": [3, 16, 25, 39, 47, 59, 60, 65, 72, 81], "ejor": 42, "els": [39, 40, 47, 52, 55, 58, 60], "elsevi": 22, "em": 25, "email": [69, 73, 78], "emce": [3, 9, 10, 81], "emper": [60, 80], "empir": [24, 25], "empti": 60, "emul": [3, 5, 9, 29, 63, 81], "en": 9, "enable_metadata_rout": [24, 25, 26, 52, 55], "encapsul": [24, 25, 26, 52, 55], "end": 16, "engin": [3, 9, 13, 22, 64, 79], "engine_": [79, 80], "enrich": 29, "ensampl": 10, "ensembl": 9, "entri": [3, 7, 9], "entropi": [3, 29, 39, 78], "environ": 77, "environment": [22, 33, 78], "epsilon": [7, 29, 64, 78, 81], "eq": 13, "equal": [5, 7, 29, 64], "erro": 61, "error": [3, 7, 9, 13, 24, 25, 26, 29, 52, 55, 60, 61, 69, 73, 79, 81], "error_metamodel": 9, "error_model": 9, "especi": [25, 81], "ess": 10, "estim": [3, 10, 16, 24, 25, 26, 30, 52, 55, 58, 60, 61, 63, 64, 77, 79, 81], "eth": 33, "european": 42, "eval_metamodel": [29, 60, 80], "eval_model": 9, "eval_model_error": 60, "evalu": [5, 9, 13, 15, 29, 34, 35, 36, 52, 60, 62, 74, 77, 79, 80, 81], "evaul": 39, "even": [69, 73, 78], "evereyth": 29, "everi": 30, "evid": [3, 13], "exact": 80, "exampl": [13, 16, 44, 45, 71, 77, 81], "except": [13, 24, 25, 26, 52, 55, 60], "exe_path": 16, "execut": [16, 68, 74], "exist": [24, 25, 26, 52, 55], "exlor": 29, "exp_design": [64, 72], "expand": [77, 79, 80], "expans": [13, 22, 29, 33, 45, 52, 60, 61, 79, 80, 81], "expd": 29, "expdesign": [29, 42, 64, 72, 80, 81], "expect": [7, 13, 16, 24, 25, 26, 29, 39, 52, 55, 58, 79], "experi": 29, "experiment": [29, 38, 39, 42, 60, 74, 77, 80], "explain": [60, 81], "explan": [65, 75], "explanatori": [25, 26, 52, 55, 58], "explicitli": 60, "exploit": [29, 39, 65, 69, 76, 81], "exploit_method": [39, 81], "exploitaiton": [69, 76, 81], "exploitation_weight": 29, "explor": [29, 39, 65, 69, 76, 81], "exploration_scor": 42, "exploration_weight": 29, "explore_method": [39, 81], "expon": [43, 45, 72], "exponenti": [29, 75], "express": [69, 73, 78], "extens": [16, 74, 81], "extra": 75, "extract": [16, 60], "f": [13, 60, 81], "fa61759ff685": 13, "factor": [5, 10, 77], "fals": [3, 5, 10, 20, 24, 25, 26, 29, 39, 40, 45, 52, 55, 58, 60, 63, 81], "far": 7, "farid": [19, 29, 33, 51, 54], "fast": [55, 58, 60, 78, 80], "fast_rvm": 55, "fastard": [60, 65, 68, 76, 80, 81], "faster": [25, 81], "fastsbl": [55, 58], "faul": [55, 58], "featur": [24, 25, 26, 52, 55, 56, 60, 71], "feinberg": 43, "ferrand": [52, 61], "field": 26, "file": [16, 29, 39, 68, 74, 75, 78, 81], "file_nam": 16, "filenam": 74, "fill": [39, 42, 64, 69, 76], "final": 80, "final_out_dict": 60, "find": [16, 29, 60, 66], "first": [13, 16, 29, 45, 60, 80, 81], "fit": [24, 25, 26, 39, 52, 55, 58, 60, 61, 63, 69, 73, 78, 80], "fit_intercept": [24, 25, 26, 52, 55, 58], "fix": [25, 58, 73], "flag": [39, 47], "flexibl": 13, "float": [3, 5, 9, 10, 24, 25, 26, 27, 29, 30, 31, 39, 44, 45, 52, 55, 58, 60, 61, 63], "flow": [69, 73], "folder": [72, 77, 79, 81], "follow": [3, 7, 22, 29, 39, 44, 49, 60, 70, 72, 81], "followin": 7, "forc": 60, "foreman": 9, "form": [24, 25, 26, 52, 55, 81], "format": [3, 7, 13], "formul": 72, "formula": 58, "forward": 16, "found": [60, 70, 71, 74, 81], "foundat": [69, 73, 78], "four": 72, "fp": 25, "frac": [9, 24, 25, 26, 52, 55], "framework": [13, 33], "fraser": [69, 73, 78], "free": [69, 73, 78], "fri": [33, 51], "from": [3, 5, 13, 16, 24, 25, 26, 29, 34, 39, 46, 47, 52, 55, 58, 60, 62, 64, 71, 72, 74, 77, 79, 80, 81], "fromkei": 60, "ft": [39, 72], "full": [79, 80, 81], "fulli": 10, "func": 16, "func_arg": 16, "function": [3, 8, 13, 15, 16, 19, 21, 23, 28, 29, 33, 38, 39, 40, 42, 43, 44, 51, 52, 54, 59, 60, 62, 64, 69, 70, 71, 73, 74, 75, 77, 78, 79, 80, 81], "functtion": 60, "further": [39, 47, 80], "futur": [75, 80], "g": [16, 24, 25, 26, 45, 52, 55, 58, 61, 71, 74], "gain": [79, 81], "gamma": [26, 27, 39, 47, 72], "gaussian": [7, 9, 24, 25, 26, 29, 55, 58, 60, 63, 65, 68, 76, 80, 81], "gaussian_kd": [39, 47], "gelman": 10, "gener": [5, 7, 16, 24, 25, 26, 29, 39, 42, 45, 47, 52, 55, 60, 61, 69, 72, 73, 74, 78, 80, 81], "generate_": 39, "generate_dataset": 5, "generate_polynomi": 60, "generate_sampl": [39, 72], "get": [3, 24, 25, 26, 52, 55, 60, 71, 79], "get_exploration_sampl": 42, "get_mc_sampl": 42, "get_metadata_rout": [24, 25, 26, 52, 55], "get_param": [24, 25, 26, 52, 55], "get_sampl": 7, "get_vornoi_sampl": 42, "git": [70, 71, 77], "github": [10, 43, 55, 71], "gitlab": 71, "give": [74, 77, 80, 81], "given": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 39, 40, 47, 49, 52, 55, 60, 62, 63, 68, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "global": [13, 39, 42, 81], "gnu": [69, 73, 78], "go": 3, "goal": 80, "goodman": 9, "gorissen": 42, "gp": [63, 80], "gpe": [59, 60], "grade": 45, "greater": 10, "grid": [39, 72], "group": [7, 39], "guid": [24, 25, 26, 52, 55, 71], "guidelin": 71, "guilla": 29, "gull": 25, "h5py": 39, "h_l": 69, "h_u": 69, "ha": [9, 24, 25, 26, 39, 45, 47, 52, 55, 60, 80, 81], "habil": 22, "hadigol": 29, "hagan": 76, "haitao": 29, "halton": [39, 72], "hammer": 9, "hammerslei": [39, 72], "handi": 81, "happi": 71, "have": [7, 10, 16, 24, 25, 26, 39, 47, 52, 55, 56, 74, 76, 81], "hdf5": [29, 39], "hdf5_file": 39, "head": 71, "height": 68, "helling": 30, "help": 81, "helper": 13, "here": [3, 16, 60, 66, 70, 74, 77, 78, 80, 81], "hermit": 72, "highest": [60, 81], "histogram": 81, "hogg": 9, "hold": 44, "holder": 16, "hope": [69, 73, 78], "how": [13, 24, 25, 26, 52, 55, 60, 68, 69, 73, 75, 76, 81], "howev": 81, "htm": 55, "html": [10, 69, 73], "http": [9, 10, 13, 22, 42, 43, 55, 58, 60, 69, 71, 73, 77, 78], "hydraul": [22, 33], "hydrogeologi": 13, "hydromechan": 33, "hydrosystem": [22, 33], "hyperbol": [45, 60], "hypercub": [64, 65, 68, 69, 72, 73, 75, 76, 78], "i": [3, 5, 7, 9, 10, 13, 16, 22, 24, 25, 26, 29, 30, 36, 37, 39, 42, 45, 47, 49, 50, 52, 55, 58, 60, 63, 64, 65, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "icvram2014": 33, "id": 16, "ident": 30, "ieee": 58, "ifram": 81, "ignor": [24, 25, 26, 52, 55], "ii": [25, 81], "iii": 81, "ilja": 29, "illustr": 68, "imag": 58, "implement": [24, 26, 33, 42, 59, 60, 81], "impli": [69, 73, 78], "implment": 81, "import": [13, 72, 74, 79, 80], "importantli": 80, "improv": 39, "inaccuraci": 7, "includ": [5, 16, 25, 26, 44, 45, 64, 71, 72, 77, 79, 80, 81], "increas": 29, "independ": 7, "index": [29, 44, 45, 60, 62, 63, 71, 79], "indic": [3, 10, 13, 43, 44, 45, 60, 62, 69, 73, 74, 76, 77, 79, 80, 81], "induc": [60, 81], "inf": 45, "inf_entropi": 3, "infer": [3, 7, 9, 13, 16, 68, 71, 77, 78], "inference_method": [3, 81], "influenc": [24, 25, 26, 29, 52, 55], "inform": [3, 24, 25, 26, 29, 52, 55, 60, 69, 73, 78, 81], "ing": 22, "init_param_spac": [39, 47], "init_sampl": 3, "initi": [3, 5, 25, 39, 47, 55, 64, 81], "input": [3, 7, 13, 16, 24, 25, 26, 29, 36, 39, 42, 46, 47, 52, 55, 60, 65, 68, 69, 73, 74, 75, 76, 77, 78, 80], "input_data": [49, 50, 72, 81], "input_descript": [], "input_fil": 16, "input_obj": 60, "input_object": [39, 47], "input_spac": 72, "input_templ": 16, "inputdisc": 7, "inputobj": [39, 47], "inputparam": [65, 72, 81], "inputparameters_2": 81, "inputspac": [39, 60, 72], "insert": 60, "insid": [17, 24, 25, 26, 52, 55, 77], "insight": [], "instanc": [24, 25, 26, 52, 55, 60], "instanci": 60, "instanti": 81, "instead": [24, 25, 26, 45, 52, 55], "institut": [22, 33], "instruct": [60, 81], "int": [3, 5, 7, 13, 16, 17, 22, 25, 26, 29, 32, 33, 34, 35, 36, 37, 39, 42, 44, 45, 47, 55, 58, 60, 63], "intec": 42, "intercept": [52, 55, 58], "intercept_": [25, 26], "interconnect": [], "interest": 74, "interfac": [74, 77], "intersit": 42, "intro": [], "introduc": 77, "introduct": 70, "introductori": [71, 81], "inv_inf_matrix": 52, "invari": 9, "invers": [7, 52, 81], "inversemodel": [71, 77], "io": [9, 10], "ipython": 81, "ishigami": [69, 70], "isoprobabilist": [39, 47, 72], "issu": [68, 71], "item": [3, 16, 60], "iter": [3, 5, 25, 26, 29, 55, 58, 60, 65, 69, 72, 76, 77, 79, 80, 81], "its": [16, 74, 77, 79, 80, 81], "itself": 80, "iw": [22, 33, 71, 77], "j": [9, 13, 22, 42, 76], "jacobi": 34, "jan": 33, "jdist": [39, 47], "jianfei": 29, "jobe": 16, "joblib": 81, "joergdietrich": 10, "jointli": [3, 7, 9, 78, 80], "jonathan": 43, "jonathf": 43, "journal": [42, 52, 61], "jul": 51, "just": [39, 47, 81], "just_analysi": 3, "justifi": [3, 5, 77], "jwalton3141": 10, "k": [3, 9, 39, 42, 58, 60], "k_w": 69, "karniadaki": 81, "katsaggelo": 58, "kdemov": 81, "keep": [24, 25, 26, 52, 55, 81], "kei": [16, 39, 60, 74], "kernel": [24, 25, 26, 52, 55, 63, 80], "key_str": 16, "keyerror": 60, "keyword": 16, "kingdom": 33, "kl": 26, "kld": [3, 13], "known": [3, 7, 9, 39, 81], "krige": 29, "krishnaprasad": 52, "kroeker": 29, "kullback": [3, 13, 39], "l": [69, 78], "l_0": 44, "l_inf": 44, "l_p": 44, "label": [13, 74], "lack": 60, "laerman": 42, "laguerr": [37, 39, 47], "lambda": 81, "lambda_": [55, 58], "lang": 9, "laplac": 58, "lar": [60, 80], "larg": 81, "larger": [44, 45], "largest": 45, "last": 60, "lastli": 74, "later": 81, "latest": 77, "latin": [64, 65, 68, 69, 72, 73, 75, 76, 78], "latin_hypercub": [39, 72, 81], "latter": [24, 25, 26, 45, 52, 55, 81], "lead": 77, "learn": [29, 39, 42, 55, 58, 60, 68, 73, 77, 78, 79, 80, 81], "least": [29, 52, 60, 61, 72, 80], "leav": [3, 39, 60, 64], "leibler": [3, 13, 39], "length": [3, 25, 26, 55, 58, 74], "leq": 44, "less": 81, "let": 81, "level": [3, 5], "lexicograph": 45, "lh2": 33, "li": 40, "liabil": [69, 73, 78], "lib": 58, "librari": [], "licens": [69, 73, 78], "lie": 17, "lifo": 60, "like": [3, 24, 25, 26, 52, 55, 58, 60, 61, 80, 81], "likelihood": [3, 7, 9, 25, 30, 31, 55, 56, 58, 81], "line": 13, "linear": [24, 25, 26, 75], "linearmodel": [24, 52, 55], "link": [68, 74, 77, 81], "link_typ": [16, 74, 81], "list": [3, 16, 17, 24, 25, 26, 29, 32, 36, 37, 39, 40, 42, 45, 47, 50, 52, 55, 58, 60, 71, 74, 75, 81], "littl": 81, "liu": 29, "liverpool": 33, "load": [68, 81], "locat": [29, 39], "log": [9, 31, 55, 56], "log_bm": 3, "log_lik": [9, 31], "log_likelihood": 9, "log_marginal_lik": 55, "log_posterior": 9, "log_prior": 9, "logarithm": 3, "loglik": [3, 9], "lognorm": [68, 69, 72], "logprior": 9, "loo": [52, 60, 61], "loo_error": 52, "loocv": [3, 39, 52, 61], "loocvscor": 60, "loop": 63, "low": 45, "lower": [17, 29, 32, 39, 45, 47], "lowest": 60, "ls3": 22, "l\u00fcthen": 33, "m": [7, 29, 33, 52, 55, 58, 68, 69, 73, 77, 78, 80], "machin": [42, 55, 58], "mackai": [25, 29], "mackei": 9, "mai": [24, 25, 26, 52, 55, 58], "mail": [22, 33], "main": [74, 80], "mainli": 72, "make": [9, 64, 80, 81], "manag": 33, "mani": 13, "manner": [29, 64, 72, 77], "manual": 33, "manuscript": 22, "map": [24, 25, 26, 52, 55, 60, 74], "mar": 54, "marelli": 33, "margin": [7, 39, 42, 47, 48, 49, 55, 56, 58, 72, 77, 81], "mark": [69, 73, 78], "markov": [3, 9], "mass": 42, "master": [10, 43, 55, 71, 77], "match": [52, 62, 69, 75, 80, 81], "math": 44, "mathcal": [7, 9, 80], "mathemat": 9, "matlab": [33, 42], "matrix": [3, 5, 7, 24, 25, 26, 31, 34, 52, 55, 58, 61, 62], "max": [65, 68, 69, 73, 76, 78], "max_a_post": [39, 81], "max_a_posteriori": 3, "max_deg": [34, 35, 36, 39, 47, 60], "max_func_itr": 39, "max_pce_deg": 39, "maxdepth": [], "maxim": [25, 29, 30, 55, 80], "maximis": [55, 58], "maximum": [3, 22, 25, 26, 30, 34, 35, 36, 37, 39, 45, 47, 55, 58, 60], "maxout": 17, "mc": [42, 65, 68, 69, 73, 74, 75, 76, 78, 81], "mc_criterion": 42, "mc_ref": 16, "mc_ref_dict": 16, "mc_ref_fil": 16, "mc_refer": 81, "mcmc": [3, 77, 81], "mcmc_param": [3, 9, 81], "md": [], "mean": [3, 7, 9, 13, 16, 24, 25, 26, 27, 29, 31, 45, 52, 55, 58, 60, 80, 81], "mean_2": 81, "mean_pr": [9, 29, 60], "meas_fil": 16, "meas_file_valid": 16, "measur": [3, 7, 13, 16, 29, 81], "measured_data": 3, "measureddata": 60, "measurement_error": 81, "mechan": [24, 25, 26, 29, 52, 55], "merchant": [69, 73, 78], "messag": 73, "met": [55, 58], "meta": [3, 9, 13, 16, 24, 25, 26, 29, 52, 55, 60], "meta_model_engin": [], "meta_model_typ": [39, 47, 60, 80, 81], "metadata": [24, 25, 26, 52, 55], "metadata_rout": [24, 25, 26, 52, 55], "metadatarequest": [24, 25, 26, 52, 55], "metamod": [29, 80], "metamodel": [3, 5, 13, 29, 39, 41, 47, 59, 72, 79, 81], "metamodel_train": 81, "metamodelengin": [], "metamodelopt": [60, 81], "method": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 38, 39, 42, 47, 49, 50, 52, 55, 58, 60, 64, 65, 68, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81], "metric": [3, 81], "mgrid": 44, "mice": 29, "might": 81, "miketip": [55, 58], "minim": [26, 71], "minout": 17, "mix": 72, "mmse": 39, "mod_loo_threshold": [39, 81], "mode": [3, 52, 55, 58], "model": [3, 5, 7, 9, 13, 15, 16, 22, 24, 25, 26, 29, 33, 39, 42, 52, 55, 56, 58, 60, 64, 70, 72, 77, 79], "model_comparison_al": 5, "model_dict": 5, "model_out_dict": 13, "model_weight": 5, "model_weights_dict": 5, "modelnam": 81, "modifi": [39, 52, 69, 73, 78], "modul": [0, 1, 11, 14, 18, 71], "modulu": 68, "mohammadi": [29, 33], "molina": 58, "moment": [13, 16, 35, 36, 50, 68, 77, 79, 81], "monomi": [43, 45], "mont": [3, 9, 16, 42, 81], "more": [13, 29, 60, 69, 71, 73, 78, 81], "most": [80, 81], "move": [3, 81], "mp": 16, "mu_pr": [24, 25, 26], "much": 76, "multi": [43, 45, 60, 62, 75, 77], "multi_process": 16, "multioutput": [24, 25, 26, 52, 55], "multioutputregressor": [24, 25, 26, 52, 55], "multipl": [7, 77, 80, 81], "multipli": 7, "multiprocess": [3, 16, 81], "multivar": 3, "multivari": [3, 7, 31, 60, 61, 62], "must": 16, "mutual": 29, "n": [7, 33], "n_": 7, "n_bootstrap": 5, "n_bootstrap_itr": [3, 5, 60], "n_burn": 3, "n_cand_group": [39, 65, 69, 76, 81], "n_canddid": [39, 81], "n_candid": [29, 42, 65, 69, 76], "n_cpu": 16, "n_featu": [25, 26], "n_featur": [24, 25, 26, 52, 55, 58, 60, 61], "n_init_sampl": [60, 80, 81], "n_input": 60, "n_iter": [24, 25, 26, 55, 58], "n_iter_": 55, "n_kfold": 58, "n_m": 5, "n_max": [37, 60, 62], "n_max_sampl": [39, 81], "n_measur": [3, 9], "n_new_sampl": [32, 39, 81], "n_ob": [3, 5, 16], "n_out": 60, "n_output": [16, 24, 25, 26, 52, 55, 60], "n_param": [3, 7, 9, 10, 13, 16, 29, 36, 39, 42, 47, 60, 62, 63], "n_pca_compon": 60, "n_prior_sampl": 3, "n_replic": 39, "n_sampl": [3, 7, 9, 13, 16, 24, 25, 26, 29, 34, 35, 36, 39, 47, 52, 55, 56, 60, 61, 62, 63, 79, 81], "n_samples_fit": [24, 25, 26, 52, 55], "n_samples_test": [25, 26, 52, 55, 58], "n_step": [3, 10, 81], "n_term": [60, 62], "n_test_sampl": [24, 25, 26], "n_walker": [3, 10, 81], "nagel": 13, "name": [3, 5, 7, 9, 13, 16, 24, 25, 26, 39, 47, 49, 50, 52, 55, 72, 74, 77, 81], "nameerror": 29, "ndarrai": 45, "ndim": 81, "necessari": [16, 77], "need": [3, 5, 7, 16, 29, 60, 80, 81], "neg": [24, 25, 26, 52, 55], "neither": 13, "nest": [24, 25, 26, 40, 52, 55], "new": [16, 29, 39, 42, 49, 52, 60, 64, 71, 74, 81], "new_c_point": 16, "new_input_fil": 16, "new_metamodelopt": 60, "new_sampl": 42, "next": [16, 73, 77], "nips01": 55, "nnme": 81, "nois": [3, 5, 7, 25, 26, 55, 58, 78], "non": [42, 52, 55, 58], "none": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 36, 37, 39, 42, 45, 47, 49, 50, 52, 55, 60, 63, 65, 69, 76, 81], "nonlinear": 75, "nor": 13, "norm": [44, 60, 65, 68, 69, 72, 73, 75, 76, 78, 80, 81], "normal": [3, 5, 7, 25, 31, 52, 55, 60, 80, 81], "normpdf": [3, 9], "notat": 77, "note": [7, 16, 71, 81], "now": [39, 74, 80, 81], "nowak": [13, 22, 29, 81], "np": [16, 52, 55, 58, 60, 72, 74, 81], "npy": 81, "nsampl": [29, 60, 80, 81], "nu": 58, "nug_term": 63, "nugget": 63, "number": [3, 5, 7, 13, 16, 24, 25, 26, 29, 32, 39, 42, 45, 52, 55, 58, 60, 63, 65, 68, 69, 72, 73, 75, 76, 78, 80], "numer": 25, "numpi": [24, 25, 26, 44, 45, 52, 55, 58, 81], "numpoli": [43, 45], "o": 76, "oaklei": 76, "obj": [3, 7, 9, 13, 39, 42, 47, 49, 60], "object": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 39, 42, 47, 49, 50, 52, 55, 58, 60, 61, 63, 72, 74, 79, 80, 81], "obs_data": [3, 9], "obs_dict": 16, "obs_dict_valid": 16, "obsdata": 81, "observ": [3, 5, 7, 9, 16, 31, 74, 81], "obtain": [10, 60, 81], "off": [29, 39], "ohagan": 70, "ol": [60, 80], "oladyshkin": [13, 22, 29, 81], "old": [29, 42], "old_edi": 29, "old_edx": 29, "omit": 45, "omp": [69, 75], "onc": 81, "one": [3, 9, 10, 16, 25, 26, 32, 39, 45, 55, 56, 58, 60, 64, 72, 81], "ong": 29, "onli": [3, 7, 9, 16, 24, 25, 26, 29, 39, 45, 52, 55, 58, 60, 72, 75, 81], "open": [71, 81], "oper": 42, "opposit": 45, "opt": [29, 39], "opt_col_point": 39, "opt_sigma": 3, "optim": [25, 29, 39, 55, 78], "optimi": 29, "optimum": 29, "option": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 36, 37, 39, 42, 47, 52, 55, 58, 60, 63, 71, 72, 74, 77, 81], "opts_dict": 5, "order": [45, 60, 77], "ordinari": [60, 80], "org": [13, 42, 71], "orig_space_dist": [39, 47], "origin": [24, 25, 26, 52, 55, 60, 74, 79], "origmodeloutput_": 81, "orthogon": [37, 52, 61, 69, 75], "orthonorm": 22, "other": [3, 24, 25, 26, 52, 55, 74, 77, 80], "otherwis": [9, 16, 24, 25, 26, 52, 55, 58, 60], "our": [71, 74, 80, 81], "out": [3, 7, 17, 25, 26, 29, 39, 60, 64, 71, 79], "out_dict": 60, "out_dir": [3, 5, 9, 39], "out_nam": 39, "outpust": 13, "output": [3, 7, 9, 13, 16, 29, 39, 60, 65, 68, 69, 73, 74, 75, 76, 77, 78, 79, 80, 81], "output_bayes_": 81, "output_file_nam": 16, "output_nam": 16, "output_pars": 16, "outputdata": 16, "outputmatrix": 60, "outputs_comparison": 5, "outputs_postprocess": 13, "outputs_postprocessing_": 81, "outputs_postprocessing_calib": 79, "outputs_prior": 72, "over": [39, 63, 72], "overal": 71, "overfit": 81, "overflow": 25, "overview": [], "overwritten": [52, 55, 58], "own": [], "p": [7, 9, 13, 22, 30, 42, 44, 52], "pacif": 9, "packag": [3, 9, 66, 68, 70, 71, 77], "page": [71, 77], "pair": [5, 60], "pairwis": 77, "panda": [7, 81], "paper": [29, 55, 58], "parallel": [16, 29, 39, 60], "param": [16, 24, 25, 26, 37, 39, 47, 52, 55], "param_set": 16, "paramet": [49, 50, 65, 68, 69, 72, 73, 74, 75, 76, 77, 78, 80, 81], "parameterset": 9, "paramethr": 7, "paramt": 25, "paras": 16, "parmet": 3, "parser": [16, 68, 74], "part": [32, 60, 75, 76, 77, 81], "parti": 16, "particular": [69, 73, 78], "pass": [3, 16, 24, 25, 26, 39, 47, 52, 55, 81], "path": 16, "pati": 52, "pattern": [16, 55, 58], "pc": 59, "pca": [60, 80], "pca_transform": 60, "pce": [13, 39, 47, 60, 68, 79, 80, 81], "pce_deg": [60, 80, 81], "pce_mean": 13, "pce_q_norm": [60, 80, 81], "pce_reg_method": [60, 80, 81], "pceengine_": 81, "pcemodel": [13, 20], "pcemodel_": [], "pcm_sampler": 39, "pd": 81, "pdf": [13, 55, 58], "peopl": 71, "per": [65, 69, 76], "percentag": 60, "percis": 39, "perfect": 25, "perfect_fit_tol": 25, "perform": [3, 5, 9, 13, 64, 68, 69, 73, 75, 76, 77, 78, 79, 80, 81], "perform_bootstrap": 3, "perl": 60, "perturb": [3, 5], "perturbed_data": [3, 5], "pfaffenwaldr": [22, 33], "physic": [52, 61], "pip": [71, 77], "pipelin": [24, 25, 26, 52, 55], "pkl": 81, "place": 16, "pleas": [24, 25, 26, 52, 55, 69, 73, 78], "plot": [3, 5, 13, 39, 81], "plot_bayes_factor": 5, "plot_just_analysi": 5, "plot_log_bm": 3, "plot_map_pr": 3, "plot_model_weight": 5, "plot_moment": [13, 79, 81], "plot_nam": 5, "plot_post_param": 3, "plot_post_pr": [3, 81], "plot_sampl": [39, 72], "plot_seq_design_diagnost": [13, 79], "plot_typ": 13, "plote": 20, "plotmoment": [], "point": [3, 7, 16, 24, 25, 26, 29, 34, 35, 39, 42, 55, 58, 63, 72, 81], "poli": 37, "pollut": 70, "poly_coeff": 35, "poly_typ": [34, 36, 37, 39, 47], "polynom": 60, "polynomi": [13, 22, 29, 33, 34, 35, 36, 37, 39, 47, 52, 60, 61, 62, 72, 79, 80, 81], "pop": 60, "popitem": 60, "posit": 30, "possibl": [24, 25, 26, 52, 55, 72], "post": [10, 13, 16, 77], "post_descript": [], "post_process": [79, 81], "post_snapshot": [39, 81], "posterior": [3, 9, 25, 26, 39, 52, 55, 58, 81], "posterior_df": 9, "posteriori": [3, 39], "postpc": 81, "postproc": 79, "postprocess": [74, 77, 81], "potenti": 10, "pp": [9, 42, 52, 61, 76], "practic": [72, 77], "precis": [25, 26, 55, 58], "precomput": [24, 25, 26, 52, 55], "predict": [3, 9, 24, 25, 26, 29, 52, 55, 58, 60, 61, 81], "predict_dist": [24, 25, 26], "predit": 60, "prefer": [77, 81], "prepar": [16, 29, 77, 80], "prescrib": 39, "prescript": 60, "present": [22, 60, 80], "prevent": 25, "previou": [16, 81], "previous": 80, "prevrun_no": 16, "princip": [13, 60, 80], "print": [25, 26, 29, 60], "prior": [3, 5, 7, 9, 26, 39, 46, 47, 58, 74, 77, 80, 81], "prior_": 81, "prior_output": 81, "prior_sampl": 3, "probabilist": 76, "probabl": [30, 72], "probablist": 3, "proc": 33, "procedur": 3, "proceed": 52, "process": [9, 13, 16, 29, 58, 60, 63, 77, 80], "produc": [69, 73, 78], "program": [69, 73, 78], "progress": [25, 26], "proj": 42, "project": 71, "propag": [52, 61], "properti": [64, 65, 68, 69, 73, 75, 76, 77, 78, 79, 80, 81], "propos": [9, 40, 71], "provid": [13, 24, 25, 26, 29, 39, 45, 47, 52, 55, 60, 65, 70, 71, 75, 77, 80, 81], "psi": [52, 61, 62], "psrf": 10, "public": [9, 69, 73, 78], "publish": [69, 73, 78], "purpos": [69, 73, 78], "pursuit": [52, 69, 75], "py": [10, 16, 43, 55, 74, 81], "py_fil": [16, 74, 81], "pylink": [74, 77, 81], "pylinkforwardmodel": 74, "pypi": 71, "python": [3, 13, 16, 71, 74, 77, 81], "python3": 77, "q": [30, 56, 60, 65, 68, 69, 73, 75, 76, 78, 80, 81], "qualiti": [13, 69, 73, 76, 79], "qualt": 3, "quantif": [22, 33], "question": [69, 73, 78], "quit": 81, "r": [7, 24, 25, 26, 52, 55, 58, 69, 76], "r2_score": [24, 25, 26, 52, 55], "r_2": 61, "r_hat": 10, "r_w": 69, "rais": [24, 25, 26, 52, 55, 60], "random": [29, 39, 42, 64, 65, 72, 81], "random_sampl": 39, "randomli": [39, 81], "rang": [17, 37, 40, 74, 80, 81], "rate": [26, 27, 69, 73], "ratio": 10, "raw": [16, 22, 39, 47], "raw_data": [39, 47], "read": [16, 29, 39, 74, 81], "read_from_fil": 39, "read_observ": 16, "read_output": 16, "readthedoc": 9, "realiti": 7, "realiz": [7, 64, 72, 74], "realli": 3, "recalcul": 60, "recheck": 72, "reciev": 16, "recognit": [55, 58], "recomput": 56, "recurr": 37, "recurs": [37, 52], "redidu": 7, "redistribut": [69, 73, 78], "reduc": [45, 80], "reduct": [10, 60, 80], "ref": [29, 55, 58], "ref_bme_kld": 13, "ref_typ": 71, "refer": [7, 13, 16, 30, 33, 60, 65, 68, 69, 73, 74, 75, 76, 78, 79, 81], "refin": 29, "refit": 29, "reg_method": 60, "regress": [9, 13, 24, 25, 26, 52, 55, 58, 60, 61, 65, 68, 69, 73, 75, 76, 78, 80, 81], "regressor": [24, 25, 26, 36, 52, 55, 60, 61, 62], "regressormixin": [24, 52, 55], "regresssor": 52, "reject": [3, 77, 81], "relat": [48, 72, 80], "releas": [71, 73, 77, 80], "relev": [24, 25, 26, 52, 55, 72], "reli": 81, "reliabl": [13, 22], "remain": 76, "remov": [16, 60], "renam": 16, "repeat": 81, "replac": [16, 77, 80], "replic": 39, "report": [25, 26, 33, 71], "repositori": [70, 77], "repres": 7, "represent": 80, "reproduc": 9, "req_output": [3, 9], "request": [3, 16, 24, 25, 26, 29, 39, 52, 55, 60], "requir": [3, 16, 37, 49], "research": [22, 42], "reshap": [44, 81], "residu": [7, 24, 25, 26, 52, 55, 61], "respect": [5, 60, 81], "respons": [24, 25, 26, 29, 39, 60], "ress": 22, "rest": 16, "result": [5, 16, 39, 60, 72, 73, 74, 79, 80, 81], "retain": [24, 25, 26, 52, 55], "retrain": 81, "retun": 29, "return": [44, 45, 74, 80, 81], "return_out_dict": 60, "return_sampl": 29, "return_std": [25, 26, 55, 58], "return_var": 10, "returnvar": 60, "revers": 45, "review": 29, "rework": 64, "rezaiifar": 52, "ridg": [60, 80], "rieckermann": 13, "risk": 33, "rmse": [13, 79, 81], "robin": 10, "root": [3, 9, 10, 13, 39, 81], "root_sampl": 80, "rosenblatt": [39, 47, 49, 72], "rossenblatt": 49, "rout": [24, 25, 26, 52, 55], "row": [9, 16], "rss": 25, "rst": [], "run": [9, 13, 16, 29, 39, 60, 68, 71, 74, 77, 78, 79, 81], "run_command": 16, "run_forwardmodel": 16, "run_model_parallel": [16, 74], "run_no": 29, "run_sampl": 9, "run_util_func": 29, "runtim": 60, "rvm_ard_model": 55, "rwmh": 10, "safeti": [13, 22, 33], "same": [16, 29, 39, 47, 72, 74, 75], "sampel": 72, "sampl": [3, 7, 9, 13, 16, 24, 25, 26, 29, 32, 35, 36, 38, 39, 42, 47, 52, 55, 60, 64, 65, 68, 69, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "sample_weight": [24, 25, 26, 52, 55], "sampler": [3, 9], "sampling_method": [29, 39, 72, 80, 81], "save": [29, 39, 69, 72, 79, 81], "savefig": 20, "sc": 33, "scalar": 7, "scale": 10, "scheme": [29, 39, 45, 60, 64, 65, 69, 76, 78, 80], "scienc": 9, "scope": 16, "score": [24, 25, 26, 29, 39, 42, 52, 55, 60, 61], "scores_": 55, "script": [16, 22, 81], "search": [16, 29, 71], "second": [16, 72, 81], "section": [39, 55, 58, 81], "see": [13, 24, 25, 26, 39, 49, 52, 55, 69, 73, 75, 76, 78], "select": [3, 13, 16, 29, 42, 52, 55, 56, 60, 63], "selected_indic": [3, 9], "self": [24, 25, 26, 52, 55, 60], "sens": [58, 73, 78], "sensit": [13, 52, 61, 69, 73, 76, 81], "separ": [16, 39, 81], "sequenc": 44, "sequenti": [13, 16, 29, 39, 41, 42, 55, 60, 64, 69, 76, 79], "sergei": [22, 29], "serv": 16, "set": [3, 5, 7, 9, 13, 16, 24, 25, 26, 29, 30, 32, 39, 40, 42, 45, 46, 52, 55, 58, 60, 62, 70, 72, 74, 77, 79, 80], "set_config": [24, 25, 26, 52, 55], "set_param": [24, 25, 26, 52, 55], "set_predict_request": [25, 26, 55], "set_score_request": [24, 25, 26, 52, 55], "setdefault": 60, "setup": [5, 75], "setup_infer": 3, "sfu": [69, 73, 78], "shall": 60, "shallow": 60, "shape": [3, 5, 7, 9, 13, 16, 24, 25, 26, 27, 29, 34, 35, 36, 39, 42, 45, 47, 52, 55, 58, 60, 61, 62, 63], "share": 75, "shceme": 81, "shell": [16, 68, 74], "shell_command": 16, "short": 70, "shot": 60, "should": [3, 10, 16, 24, 25, 26, 44, 52, 55, 60, 64, 69, 72, 73, 74, 78, 80, 81], "show": [65, 68, 75, 78, 81], "shown": 3, "sigma": [3, 7, 9, 29, 58, 81], "sigma2": [3, 9, 29, 58], "sigma2_prior": 7, "sigma2dict": 29, "sigma_": [55, 58], "sigma_f": 81, "signal": 52, "significantli": 76, "sim": 7, "simillar": 16, "simon": [69, 73, 78], "simpl": [24, 25, 26, 52, 55, 74, 80], "simpli": 3, "simplic": 7, "simul": [3, 9, 13, 16, 22, 42, 60, 81], "simulation_output": 16, "sinc": 81, "singl": [7, 9, 13, 74, 81], "singular": 52, "size": [24, 25, 26, 52, 55, 58, 81], "skbay": 55, "sklearn": [24, 25, 26, 52, 55], "sklearnpca": 60, "smaller": [25, 45, 76, 81], "smallest": 25, "so": [7, 24, 25, 26, 52, 55, 76, 77, 81], "sobol": [13, 39, 69, 72, 73, 76, 77, 79, 81], "sobol_cel": 13, "sobol_indic": [13, 79], "sobolindicespc": 81, "soc": 76, "societi": 9, "softwar": [16, 69, 73, 78], "solut": 81, "solver": 16, "some": [24, 25, 26, 39, 47, 52, 55, 63, 69, 77, 79, 80, 81], "sonja": [69, 73, 78], "soon": [29, 81], "sort": 45, "sourc": [10, 60, 71, 77], "space": [29, 39, 42, 46, 47, 60, 64, 65, 68, 69, 73, 74, 75, 76, 77, 78, 80, 81], "sparemulti": 60, "spars": [13, 24, 25, 26, 52, 55, 58, 61, 80], "sparsex": 60, "sparsiti": [60, 81], "specif": [50, 60, 79], "specifi": [17, 29, 39, 60, 72, 80], "sphinx_new": [], "split": [64, 77, 81], "springer": [55, 58], "squar": [3, 9, 10, 13, 24, 25, 26, 29, 52, 55, 60, 74, 80, 81], "ssurjano": [69, 73, 78], "stabl": 9, "stackoverflow": 60, "stand": 3, "standard": [13, 16, 29, 60, 64, 80, 81], "start": [3, 16, 29, 45, 55, 71, 80, 81], "start_engin": [29, 80, 81], "stat": [69, 73, 78], "static": [29, 65, 68, 69, 72, 73, 75, 76, 78, 81], "statist": 76, "std": [3, 9, 16, 29, 81], "std_2": 81, "std_pred": [9, 29, 60], "stdev": [9, 80], "step": [3, 16, 39, 65, 80], "step_snapshot": [39, 81], "still": [69, 81], "stochast": [13, 22], "stop": [39, 45], "store": [16, 81], "str": [3, 5, 7, 13, 16, 24, 25, 26, 29, 39, 42, 47, 52, 55, 60], "straightforward": 77, "strategi": [29, 42, 81], "string": [3, 13, 16, 29, 34, 36, 37, 39, 47, 50, 81], "structur": [64, 77], "stuttgart": [22, 33, 71, 77], "sub": [24, 25, 26, 52, 55], "subdirectori": 16, "submatrix": 52, "subobject": [24, 25, 26, 52, 55], "successfulli": 16, "sudret": [13, 33, 52, 61, 81], "sum": [10, 24, 25, 26, 45, 52, 55], "sum_i": 44, "summari": [29, 60], "sumo": 42, "superclass": 24, "support": [3, 7, 39, 44, 60, 71, 72], "surjanov": [69, 73, 78], "surrog": [16, 28, 29, 42, 60, 64, 72, 77, 79], "surrogate_descript": [], "surrogate_model": [64, 72, 77, 80, 81], "switzerland": 33, "sy": 81, "system": [13, 22, 33, 52], "t": [24, 25, 26, 42, 44, 52, 55], "t_l": 69, "t_u": 69, "tag": 81, "take": [64, 74, 77, 81], "taken": 29, "target": [25, 26, 29, 52, 55, 58, 60, 61, 63], "tau": 78, "teach": 70, "tell": 80, "templat": 16, "term": [7, 25, 26, 37, 45, 63, 69, 73, 77, 78, 81], "termin": [55, 58], "test": [24, 25, 26, 52, 55, 58, 69, 78], "test_": 78, "test_analytical_funct": 81, "text": [7, 16], "textbf": 7, "th": 42, "than": [10, 44, 45], "thei": [72, 77, 81], "them": [16, 29, 77], "themselv": 81, "theorem": 9, "theori": 29, "therefor": [24, 25, 26, 45, 55, 58], "theta": [7, 9, 10, 40], "theta_": 7, "thi": [3, 7, 9, 10, 13, 16, 24, 25, 26, 39, 40, 42, 47, 52, 55, 58, 60, 62, 64, 65, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81], "thing": 80, "third": 16, "though": [68, 81], "three": [5, 60, 75, 80, 81], "threshold": [25, 26, 39, 55, 58, 60], "through": [68, 77, 81], "thu": 19, "time": [5, 13, 16, 65, 68, 69, 73, 75, 76, 78, 81], "timestep": [60, 74], "tip": [55, 58], "titl": 3, "toctre": [], "todo": [3, 29, 71, 72, 77], "tol": [24, 25, 26, 55, 56, 58], "tolist": 45, "tom": [3, 81], "toolbox": 42, "topic": 77, "total": [3, 13, 24, 25, 26, 45, 52, 55, 65, 68, 69, 73, 75, 76, 78, 79, 81], "total_sigma2": [3, 9], "total_sobol": [13, 81], "towardsdatasci": 13, "tpl": 16, "tr_x": [39, 47], "trade": [29, 39], "tradeoff": [65, 69, 76, 78, 81], "tradeoff_schem": [29, 39, 81], "tradeoff_weight": 29, "train": [3, 9, 13, 16, 28, 29, 36, 39, 41, 42, 52, 55, 60, 63, 72, 77, 79], "train_error_model": 9, "train_norm": [29, 80, 81], "train_seq_design": 29, "train_sequenti": [29, 64, 79, 81], "transact": 58, "transform": [16, 39, 47, 49, 60, 72], "transpos": 52, "tree": 71, "trine": 39, "true": [3, 5, 16, 17, 20, 24, 25, 26, 39, 40, 44, 52, 55, 58, 60, 72, 81], "truncat": [44, 45, 60, 65, 68, 69, 73, 75, 76, 78, 80, 81], "try": 25, "tsunami": 29, "tue": 54, "tupl": [16, 29, 32, 39, 45, 47, 60], "tutori": [65, 71, 75], "two": [13, 24, 25, 26, 30, 45, 55, 58, 60, 74, 78, 80, 81], "type": [3, 5, 7, 9, 13, 16, 25, 29, 31, 34, 36, 37, 39, 47, 50, 60, 65, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 81], "type_": 3, "typic": [10, 81], "u": [24, 25, 26, 52, 55, 71, 80, 81], "ugent": 42, "um": 74, "umbridg": 16, "umbridge_model": 16, "uncertain": [7, 49, 50, 60, 72, 74, 77, 80], "uncertainti": [3, 22, 33, 52, 61, 72, 77], "unchang": [24, 25, 26, 52, 55], "under": [69, 71, 73, 74, 77, 78], "underli": [], "understand": 79, "uni": [22, 33, 71, 77], "unif": [72, 81], "uniform": [49, 65, 68, 69, 72, 73, 78, 81], "uniform_averag": [24, 25, 26, 52, 55], "union": 45, "uniqu": [24, 25, 26], "unit": 33, "univ_basi": 60, "univ_basis_v": [39, 47, 60], "univ_p_v": 62, "univ_v": 36, "univari": [22, 35, 36, 60, 62], "univers": [33, 69, 73, 78], "universitaet": 22, "unknown": [3, 7, 9, 29], "unstabl": 25, "until": 39, "up": [3, 60, 62, 80], "updat": [16, 24, 25, 26, 52, 55, 58, 60], "update_input_param": 16, "update_pce_coeff": 60, "upper": [17, 29, 32, 39, 45, 47], "uq_bsc": 58, "uq_regress": 58, "uqlab": [33, 58], "urban": 13, "us": [3, 7, 9, 13, 16, 22, 24, 25, 26, 29, 39, 42, 44, 45, 47, 52, 55, 58, 60, 64, 69, 70, 71, 72, 73, 74, 77, 78, 79, 80, 81], "use_bayes_set": 5, "useag": 80, "user": [3, 5, 16, 24, 25, 26, 33, 39, 47, 52, 55, 71, 72, 80, 81], "util": [24, 25, 26, 29, 39, 43, 52, 55], "util_alphoptdesign": 29, "util_bayesianactivedesign": 29, "util_bayesiandesign": 29, "util_func": [29, 39, 81], "util_varbaseddesign": 29, "utilii": 39, "v": [3, 22, 24, 25, 26, 39, 47, 52, 55, 60], "v1": 33, "valid": [3, 13, 16, 39, 47, 60, 61, 64, 72, 77, 79, 81], "valid_error": 13, "valid_metamodel": [13, 79, 81], "valid_metr": 3, "valid_model_run": 81, "valid_sampl": 81, "validlikelihoods_": 81, "valu": [3, 5, 7, 9, 10, 16, 17, 24, 25, 26, 34, 35, 45, 52, 55, 56, 58, 60, 61, 63, 65, 68, 72, 74, 80, 81], "valueerror": 62, "var": 29, "var_hat": [25, 26, 55, 58], "var_pca_threshold": 60, "var_pr": [24, 25, 26], "varbasedoptdesign": 39, "variabl": [25, 26, 52, 55, 58, 76, 81], "varianc": [3, 7, 10, 24, 25, 26, 55, 58, 60, 63, 64, 65, 68, 76, 78], "variant": 80, "variat": [24, 26, 60, 80], "varidx": [60, 63], "varieti": 74, "variou": [60, 81], "varoptdesign": [29, 39], "vbl": [60, 80], "vector": [25, 26, 60], "venv": 77, "verbos": [3, 16, 24, 25, 26, 29, 52, 55, 58, 60, 81], "veri": [25, 74], "versa": 30, "version": [24, 25, 26, 42, 52, 55, 60, 69, 71, 73, 77, 78], "via": [5, 7, 9, 39, 47, 60, 68, 69, 72, 73, 74, 76, 77, 80, 81], "vice": 30, "view": 60, "virtual": 77, "visual": [5, 39, 72, 77, 79, 81], "voronoi": [39, 42, 64, 81], "vulner": 33, "w": [9, 10, 13, 22, 24, 25, 26, 42, 52, 55], "wa": 60, "wai": [29, 60, 80, 81], "walker": 3, "want": [71, 72, 79, 80, 81], "warranti": [69, 73, 78], "wavelet": 52, "wb": 81, "we": [7, 25, 64, 69, 70, 71, 73, 74, 78, 79, 80, 81], "wear": 9, "websit": [], "weibul": 72, "weight": [5, 10, 24, 25, 26, 29, 39, 52, 55, 58, 77], "well": [10, 24, 25, 26, 52, 55], "were": 79, "what": [3, 7, 70, 80], "when": [3, 7, 9, 13, 16, 24, 25, 26, 30, 39, 52, 55, 58, 72, 81], "where": [5, 7, 24, 25, 26, 34, 35, 39, 44, 52, 55, 60, 72, 81], "whether": [5, 16, 39, 52, 55, 58], "which": [3, 16, 22, 24, 25, 26, 30, 58, 71, 81], "while": [45, 64, 77, 79, 80, 81], "width": 68, "wiener": 37, "wight": 5, "wish": 16, "witch": 44, "within": [10, 16, 70], "without": [16, 64, 68, 69, 73, 78, 81], "wolfgang": 29, "word": 16, "work": [16, 24, 25, 26, 52, 55, 69, 71, 73, 78, 81], "workflow": [71, 81], "wors": [24, 25, 26, 52, 55], "would": [24, 25, 26, 52, 55, 71], "wrapper": 16, "write": [], "written": 16, "wrong": 29, "www": [22, 33, 55, 58, 69, 73, 78], "x": [13, 16, 24, 25, 26, 31, 34, 35, 36, 39, 44, 47, 52, 53, 55, 58, 60, 63, 72, 74, 80, 81], "x1": 16, "x_1": [49, 50, 73, 81], "x_2": [73, 81], "x_3": 73, "x_axi": 13, "x_can": 29, "x_i": [44, 80], "x_mc": 29, "x_new": 29, "x_valu": [16, 20, 74, 80], "xi": 16, "xiu": 81, "xlabel": 13, "xnew": 29, "xx": 16, "xxa": 55, "xya": 55, "y": [7, 9, 24, 25, 26, 39, 52, 53, 55, 60, 61, 63], "y_hat": [25, 26, 29, 52, 55, 58], "y_i": 80, "y_pc_val": 20, "y_pc_val_std": 20, "y_pred": [24, 25, 26, 52, 55, 60], "y_true": [24, 25, 26, 52, 55], "y_val": 20, "ye": [16, 65, 68, 78], "yet": 10, "yew": 29, "you": [7, 13, 16, 24, 25, 26, 52, 55, 66, 69, 71, 73, 75, 76, 78], "young": 68, "your": [13, 69, 73, 76, 77], "yr": [69, 73], "z": 81, "zero": [30, 52, 55, 58], "zeromean": 7, "zip": 16, "zip_subdir": 16, "zurich": 33}, "titles": ["bayesvalidrox", "bayesvalidrox.bayes_inference", "bayesvalidrox.bayes_inference.bayes_inference", "bayesvalidrox.bayes_inference.bayes_inference.BayesInference", "bayesvalidrox.bayes_inference.bayes_model_comparison", "bayesvalidrox.bayes_inference.bayes_model_comparison.BayesModelComparison", "bayesvalidrox.bayes_inference.discrepancy", "bayesvalidrox.bayes_inference.discrepancy.Discrepancy", "bayesvalidrox.bayes_inference.mcmc", "bayesvalidrox.bayes_inference.mcmc.MCMC", "bayesvalidrox.bayes_inference.mcmc.gelman_rubin", "bayesvalidrox.post_processing", "bayesvalidrox.post_processing.post_processing", "bayesvalidrox.post_processing.post_processing.PostProcessing", "bayesvalidrox.pylink", "bayesvalidrox.pylink.pylink", "bayesvalidrox.pylink.pylink.PyLinkForwardModel", "bayesvalidrox.pylink.pylink.within_range", "bayesvalidrox.surrogate_models", "bayesvalidrox.surrogate_models.adaptPlot", "bayesvalidrox.surrogate_models.adaptPlot.adaptPlot", "bayesvalidrox.surrogate_models.apoly_construction", "bayesvalidrox.surrogate_models.apoly_construction.apoly_construction", "bayesvalidrox.surrogate_models.bayes_linear", "bayesvalidrox.surrogate_models.bayes_linear.BayesianLinearRegression", "bayesvalidrox.surrogate_models.bayes_linear.EBLinearRegression", "bayesvalidrox.surrogate_models.bayes_linear.VBLinearRegression", "bayesvalidrox.surrogate_models.bayes_linear.gamma_mean", "bayesvalidrox.surrogate_models.engine", "bayesvalidrox.surrogate_models.engine.Engine", "bayesvalidrox.surrogate_models.engine.hellinger_distance", "bayesvalidrox.surrogate_models.engine.logpdf", "bayesvalidrox.surrogate_models.engine.subdomain", "bayesvalidrox.surrogate_models.eval_rec_rule", "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule", "bayesvalidrox.surrogate_models.eval_rec_rule.eval_rec_rule_arbitrary", "bayesvalidrox.surrogate_models.eval_rec_rule.eval_univ_basis", "bayesvalidrox.surrogate_models.eval_rec_rule.poly_rec_coeffs", "bayesvalidrox.surrogate_models.exp_designs", "bayesvalidrox.surrogate_models.exp_designs.ExpDesigns", "bayesvalidrox.surrogate_models.exp_designs.check_ranges", "bayesvalidrox.surrogate_models.exploration", "bayesvalidrox.surrogate_models.exploration.Exploration", "bayesvalidrox.surrogate_models.glexindex", "bayesvalidrox.surrogate_models.glexindex.cross_truncate", "bayesvalidrox.surrogate_models.glexindex.glexindex", "bayesvalidrox.surrogate_models.input_space", "bayesvalidrox.surrogate_models.input_space.InputSpace", "bayesvalidrox.surrogate_models.inputs", "bayesvalidrox.surrogate_models.inputs.Input", "bayesvalidrox.surrogate_models.inputs.Marginal", "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit", "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.OrthogonalMatchingPursuit", "bayesvalidrox.surrogate_models.orthogonal_matching_pursuit.corr", "bayesvalidrox.surrogate_models.reg_fast_ard", "bayesvalidrox.surrogate_models.reg_fast_ard.RegressionFastARD", "bayesvalidrox.surrogate_models.reg_fast_ard.update_precisions", "bayesvalidrox.surrogate_models.reg_fast_laplace", "bayesvalidrox.surrogate_models.reg_fast_laplace.RegressionFastLaplace", "bayesvalidrox.surrogate_models.surrogate_models", "bayesvalidrox.surrogate_models.surrogate_models.MetaModel", "bayesvalidrox.surrogate_models.surrogate_models.corr_loocv_error", "bayesvalidrox.surrogate_models.surrogate_models.create_psi", "bayesvalidrox.surrogate_models.surrogate_models.gaussian_process_emulator", "Active learning: iteratively expanding the training set", "Example: Analytical function", "API", "Bayesian inference and multi-model comparison", "Example: beam", "Example: borehole", "EXAMPLES", "Surrogate-assisted\u00a0Bayesian validation of computational models", "Priors, input space and experimental design", "Example: ishigami", "Models", "Example: model comparison", "Example: OHagan-function", "USER GUIDE", "Example: pollution", "Postprocessing", "Training surrogate models", "TUTORIAL"], "titleterms": {"1": 75, "3": 75, "activ": 64, "adaptplot": [19, 20], "also": [], "an": 81, "analyt": 65, "api": 66, "apoly_construct": [21, 22], "argument": [29, 42], "assist": 71, "attribut": [3, 5, 7, 9, 13, 16, 25, 26, 39, 42, 47, 49, 50, 52, 55, 58, 60], "bay": [], "bayes_infer": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], "bayes_linear": [23, 24, 25, 26, 27], "bayes_model_comparison": [4, 5], "bayesian": [67, 71, 81], "bayesianlinearregress": 24, "bayesinfer": 3, "bayesmodelcomparison": 5, "bayesvalidrox": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "beam": 68, "borehol": 69, "check_rang": 40, "choic": [65, 68, 69, 73, 75, 76, 78], "class": [], "comparison": [67, 75], "comput": 71, "contact": [], "content": 71, "contribut": 71, "corr": 53, "corr_loocv_error": 61, "create_psi": 62, "cross_trunc": 44, "data": [65, 68, 69, 73, 76, 78, 81], "defin": 81, "descript": [], "design": [72, 81], "discrep": [6, 7, 65, 68], "eblinearregress": 25, "engin": [28, 29, 30, 31, 32, 80, 81], "eval_rec_rul": [33, 34, 35, 36, 37], "eval_rec_rule_arbitrari": 35, "eval_univ_basi": 36, "exampl": [49, 64, 65, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80], "exp_design": [38, 39, 40], "expand": 64, "expdesign": 39, "experiment": [72, 81], "exploit": 64, "explor": [41, 42, 64], "function": [65, 76], "further": 71, "gamma_mean": 27, "gaussian_process_emul": 63, "gelman_rubin": 10, "glexindex": [43, 44, 45], "guid": 77, "hellinger_dist": 30, "import": 81, "indic": 71, "infer": [67, 81], "input": [48, 49, 50, 72, 81], "input_spac": [46, 47], "inputspac": 47, "instal": [71, 77], "introductori": [], "ishigami": 73, "iter": 64, "l2_model": 75, "learn": 64, "librari": 81, "licens": 71, "link": 71, "logpdf": 31, "margin": 50, "mcmc": [8, 9, 10], "meta": 81, "meta_model_engin": [], "metamodel": [60, 65, 68, 69, 73, 75, 76, 78, 80], "model": [65, 67, 68, 69, 71, 73, 74, 75, 76, 78, 80, 81], "model1": 75, "multi": 67, "necessari": 81, "nl2_model": 75, "nl4_model": 75, "note": [24, 25, 26, 39, 52, 55, 60], "ohagan": 76, "option": 80, "orthogonal_matching_pursuit": [51, 52, 53], "orthogonalmatchingpursuit": 52, "overview": 77, "packag": [], "paramet": [3, 5, 7, 9, 10, 13, 16, 17, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 47, 52, 55, 58, 60, 61, 62, 63], "pollut": 78, "poly_rec_coeff": 37, "post": 81, "post_process": [11, 12, 13], "postprocess": [13, 79], "prior": [65, 68, 69, 72, 73, 76, 78], "priors1": 75, "probabilist": 81, "process": 81, "pylink": [14, 15, 16, 17, 65, 68, 69, 73, 75, 76, 78], "pylinkforwardmodel": [16, 81], "quickstart": 71, "rais": [13, 29, 62], "refer": [52, 55, 58], "reg_fast_ard": [54, 55, 56], "reg_fast_laplac": [57, 58], "regressionfastard": 55, "regressionfastlaplac": 58, "return": [3, 5, 7, 9, 10, 13, 16, 17, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 42, 47, 49, 52, 55, 58, 60, 61, 62, 63], "see": [], "sequenti": 81, "set": [64, 65, 68, 69, 73, 75, 76, 78, 81], "space": 72, "subdomain": 32, "surrog": [65, 68, 69, 71, 73, 75, 76, 78, 80, 81], "surrogate_model": [18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "tabl": 71, "theori": [], "tradeoff": 64, "train": [64, 65, 68, 69, 73, 75, 76, 78, 80, 81], "tutori": 81, "uncertainti": 81, "update_precis": 56, "user": 77, "valid": 71, "vblinearregress": 26, "within_rang": 17}})
\ No newline at end of file
diff --git a/docs/build/html/surrogate_description.html b/docs/build/html/surrogate_description.html
index cbaf39a07c0daf3614e576bb3a4949c656b23ab0..a9af8695565ac3e9e094942bcccbdcf924f298be 100644
--- a/docs/build/html/surrogate_description.html
+++ b/docs/build/html/surrogate_description.html
@@ -338,19 +338,23 @@
           <section id="training-surrogate-models">
 <h1>Training surrogate models<a class="headerlink" href="#training-surrogate-models" title="Link to this heading">¶</a></h1>
 <p>Surrogate models, also called metamodels, are models that are built on evaluations of full models with the goal to capture the full behaviour, but reduce the cost of evaluations.</p>
-<p>In BayesValidRox two types of surrogate model are available, polynomial chaos expansion and Gaussian processes.
-The Polynomial Chaos Expansion (PCE) and its variant the arbitrary Polynomial Chaos Expansion (aPC) build polynomials from the given distributions of uncertain inputs.
-Gaussian processes (GP) give kernel-based representations of the model results.</p>
 <p>The surrogate models are trained on datasets <span class="math notranslate nohighlight">\(\mathcal{D}=(x_i, y_i)_{i=1,\dots,M)\)</span> that consist of <span class="math notranslate nohighlight">\(M\)</span> samples of the uncertain parameters and the corresponding model outputs.
 We call this dataset the training data, with training samples <span class="math notranslate nohighlight">\((x_i)_{i=1,\dots,M)\)</span>.</p>
-<section id="metamodel-and-engine-classes">
-<h2>MetaModel and Engine classes<a class="headerlink" href="#metamodel-and-engine-classes" title="Link to this heading">¶</a></h2>
 <p>BayesValidRox creates surrogate models as objects of the class <a class="reference internal" href="_autosummary/bayesvalidrox.surrogate_models.surrogate_models.MetaModel.html#bayesvalidrox.surrogate_models.surrogate_models.MetaModel" title="bayesvalidrox.surrogate_models.surrogate_models.MetaModel"><code class="xref any py py-class docutils literal notranslate"><span class="pre">bayesvalidrox.surrogate_models.surrogate_models.MetaModel</span></code></a>.
 Training is performed by the class <a class="reference internal" href="_autosummary/bayesvalidrox.surrogate_models.engine.Engine.html#bayesvalidrox.surrogate_models.engine.Engine" title="bayesvalidrox.surrogate_models.engine.Engine"><code class="xref any py py-class docutils literal notranslate"><span class="pre">bayesvalidrox.surrogate_models.engine.Engine</span></code></a>.</p>
 <a class="reference internal image-reference" href="_images/metamod_training_reduced.png"><img alt="UML diagram for metamodel-related classes in bayesvalidrox" src="_images/metamod_training_reduced.png" style="width: 800px;" /></a>
-</section>
 <section id="metamodel-options">
 <h2>MetaModel options<a class="headerlink" href="#metamodel-options" title="Link to this heading">¶</a></h2>
+<p>In BayesValidRox two types of surrogate model are available, Polynomial Chaos Expansion (PCE) and Gaussian Processes (GP).
+The Polynomial Chaos Expansion (PCE) and its variant the arbitrary Polynomial Chaos Expansion (aPC) build polynomials from the given distributions of uncertain inputs.
+Gaussian processes (GP) give kernel-based representations of the model results.</p>
+<p>We provide a broad range of regression methods for useage with PCE-surrogates that can be set by the parameter <code class="docutils literal notranslate"><span class="pre">MetaModel.pce_reg_method</span></code>.
+These include Ordinary Least Squares (<code class="docutils literal notranslate"><span class="pre">ols</span></code>), Bayesian Ridge Regression (<code class="docutils literal notranslate"><span class="pre">brr</span></code>), Least angle regression (<code class="docutils literal notranslate"><span class="pre">lars</span></code>), Bayesian ARD Regression (<code class="docutils literal notranslate"><span class="pre">ard</span></code>), Fast Bayesian ARD Regression (<code class="docutils literal notranslate"><span class="pre">fastard</span></code>), Variational Bayesian Learning (<code class="docutils literal notranslate"><span class="pre">vbl</span></code>) and Emperical Bayesian Learning (<code class="docutils literal notranslate"><span class="pre">ebl</span></code>).
+Depending on the chosen regression method, the surrogate outputs a mean approximation and an associated standard deviation.</p>
+<p>Dimensionality reduction can be performed on outputs with Principal Component Analysis (PCA).
+PCA is applied on the set of surrogates built for the <code class="docutils literal notranslate"><span class="pre">x_values</span></code> defined in the model.</p>
+<p>If bootstrapping is used, multiple surrogates will be created based on bootstrapped training data, and jointly evaluated.
+The final outputs will then be the mean and standard deviation of their approximations.</p>
 </section>
 <section id="training-with-the-engine">
 <h2>Training with the engine<a class="headerlink" href="#training-with-the-engine" title="Link to this heading">¶</a></h2>
@@ -491,7 +495,6 @@ Evaluation via the surrogate model can make use of the sampling in the experimen
           <div class="toc-tree">
             <ul>
 <li><a class="reference internal" href="#">Training surrogate models</a><ul>
-<li><a class="reference internal" href="#metamodel-and-engine-classes">MetaModel and Engine classes</a></li>
 <li><a class="reference internal" href="#metamodel-options">MetaModel options</a></li>
 <li><a class="reference internal" href="#training-with-the-engine">Training with the engine</a></li>
 <li><a class="reference internal" href="#example">Example</a></li>
diff --git a/docs/source/al_description.rst b/docs/source/al_description.rst
index 636fa7877bb9b02fd4512c11459647e3c9a57ef7..c1d5e99f2ec65aeaf8f0933096bd351ca0c6e465 100644
--- a/docs/source/al_description.rst
+++ b/docs/source/al_description.rst
@@ -1,8 +1,27 @@
 Active learning: iteratively expanding the training set
 *******************************************************
+Active learning (AL), also called sequential training, is the iterative choice of additional training samples after the initial training of a surrogate model.
+The new samples can be chosen in an explorative manner or by exploiting available data and properties of the surrogate.
 
-
+.. warning::
+   The active learning methods are currently being reworked. 
+   This should not change the function call ``Engine.train_sequential()``, but will change the associated class structures.
 
 .. image:: ../diagrams/active_learning_reduced.png
    :width: 550
-   :alt: UML diagram for the classes and functions used in active learning in BayesValidRox.
\ No newline at end of file
+   :alt: UML diagram for the classes and functions used in active learning in BayesValidRox.
+   
+In BayesValidRox AL is realized by additional properties of the :any:`bayesvalidrox.surrogate_models.exp_designs.ExpDesigns` and :any:`bayesvalidrox.surrogate_models.engine.Engine` classes without any changes to the surrogate model.
+
+Exploration, exploitation and tradeoff
+======================================
+**Exploration** methods choose the new samples in a space-filling manner, while **exploitation methods** make use of available data or properties of the surrogate models, such as the estimated surrogate standard deviation.
+Exploration methods in BayesValidRox include random or latin-hypercube sampling, voronoi sampling, choice based on leave-one-out cross validation or dual-annealing.
+Exploitation can be set to Bayesian designs, such as Bayesian3 Active Learning, or variance-based designs.
+
+The tradeoff between exploration and exploitation is defined by **tradeoff-schemes**, such as an equal split, epsilon-decreaseing or adaptive schemes.
+
+
+Example
+=======
+We take the engine from :any:`surrogate_description` and change the settings to perform sequential training.
diff --git a/docs/source/index.rst b/docs/source/index.rst
index dd9bb06fb0d2e92d10a644de1f03f8bd6e112265..b533a730c30cb41d03e9e2c20d0ef9683185f53d 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -18,7 +18,6 @@ Links
 * PyPI: https://pypi.org/project/bayesvalidrox/
 * Documentation:
 
-#TODO Add other links
 
 Installation
 ------------
@@ -28,35 +27,37 @@ This package runs under Python 3.9 for versions <1.0.0 and 3.9+ from version 1.0
 
    pip install bayesvalidrox
 
-#TODO Note other needed installations and tips
 
 Quickstart
 ----------
 #TODO A minimal example to get people started
 
-See also
---------
-#TODO Link other websites that are related to BVR
-
 License
 -------
 #TODO Note the License under which BVR is released
 
+Contribution
+------------
+We would be happy for you to contribute to **BayesValidRox**.
+This can include e.g. reporting issues, proposing new features, working on features, or support with the documentation.
+If you want to contibute, check out our contribution_ guidelines.
+You can contact us on the gitlab_ page.
+
+.. _gitlab: https://git.iws.uni-stuttgart.de/inversemodeling/bayesvalidrox
+
+.. _contribution: https://git.iws.uni-stuttgart.de/inversemodeling/bayesvalidrox/-/blob/docs/sphinx_new/CONTRIBUTING.md?ref_type=heads
+
 Further contents
 ----------------
 
 .. toctree::
-   :maxdepth: 2
+   :maxdepth: 1
    
    packagedescription
    tutorial
    examples
    api
-   
-Contact
--------
-#TODO Add options here
-   
+
    
 Indices and tables
 ==================
diff --git a/docs/source/surrogate_description.rst b/docs/source/surrogate_description.rst
index 6cd7bcd296ddd884cc3b07399f82b21d4f84d81e..61d89e6a6ff5bf1ffa27210ce1a077ac0634e8c9 100644
--- a/docs/source/surrogate_description.rst
+++ b/docs/source/surrogate_description.rst
@@ -2,16 +2,9 @@ Training surrogate models
 *************************
 Surrogate models, also called metamodels, are models that are built on evaluations of full models with the goal to capture the full behaviour, but reduce the cost of evaluations.
 
-In BayesValidRox two types of surrogate model are available, polynomial chaos expansion and Gaussian processes.
-The Polynomial Chaos Expansion (PCE) and its variant the arbitrary Polynomial Chaos Expansion (aPC) build polynomials from the given distributions of uncertain inputs.
-Gaussian processes (GP) give kernel-based representations of the model results.
-
 The surrogate models are trained on datasets :math:`\mathcal{D}=(x_i, y_i)_{i=1,\dots,M)` that consist of :math:`M` samples of the uncertain parameters and the corresponding model outputs.
 We call this dataset the training data, with training samples :math:`(x_i)_{i=1,\dots,M)`.
 
-
-MetaModel and Engine classes
-============================
 BayesValidRox creates surrogate models as objects of the class :any:`bayesvalidrox.surrogate_models.surrogate_models.MetaModel`.
 Training is performed by the class :any:`bayesvalidrox.surrogate_models.engine.Engine`.
 
@@ -21,6 +14,19 @@ Training is performed by the class :any:`bayesvalidrox.surrogate_models.engine.E
    
 MetaModel options
 =================
+In BayesValidRox two types of surrogate model are available, Polynomial Chaos Expansion (PCE) and Gaussian Processes (GP).
+The Polynomial Chaos Expansion (PCE) and its variant the arbitrary Polynomial Chaos Expansion (aPC) build polynomials from the given distributions of uncertain inputs.
+Gaussian processes (GP) give kernel-based representations of the model results.
+
+We provide a broad range of regression methods for useage with PCE-surrogates that can be set by the parameter ``MetaModel.pce_reg_method``.
+These include Ordinary Least Squares (``ols``), Bayesian Ridge Regression (``brr``), Least angle regression (``lars``), Bayesian ARD Regression (``ard``), Fast Bayesian ARD Regression (``fastard``), Variational Bayesian Learning (``vbl``) and Emperical Bayesian Learning (``ebl``).
+Depending on the chosen regression method, the surrogate outputs a mean approximation and an associated standard deviation.
+
+Dimensionality reduction can be performed on outputs with Principal Component Analysis (PCA).
+PCA is applied on the set of surrogates built for the ``x_values`` defined in the model.
+
+If bootstrapping is used, multiple surrogates will be created based on bootstrapped training data, and jointly evaluated.
+The final outputs will then be the mean and standard deviation of their approximations.
 
 
 Training with the engine