Skip to content

Commit

Permalink
auto: Rebuild docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Sep 23, 2024
1 parent 13e0ff8 commit 138bcfe
Show file tree
Hide file tree
Showing 167 changed files with 6,807 additions and 5,896 deletions.
107 changes: 57 additions & 50 deletions _examples/Amortized_Point_Estimation.html

Large diffs are not rendered by default.

110 changes: 59 additions & 51 deletions _examples/Covid19_Initial_Posterior_Estimation.html

Large diffs are not rendered by default.

107 changes: 57 additions & 50 deletions _examples/Hierarchical_Model_Comparison_MPT.html

Large diffs are not rendered by default.

116 changes: 63 additions & 53 deletions _examples/Intro_Amortized_Posterior_Estimation.html

Large diffs are not rendered by default.

107 changes: 57 additions & 50 deletions _examples/LCA_Model_Posterior_Estimation.html

Large diffs are not rendered by default.

107 changes: 57 additions & 50 deletions _examples/Linear_ODE_system.html

Large diffs are not rendered by default.

114 changes: 61 additions & 53 deletions _examples/Model_Comparison_MPT.html

Large diffs are not rendered by default.

107 changes: 57 additions & 50 deletions _examples/Model_Misspecification.html

Large diffs are not rendered by default.

107 changes: 57 additions & 50 deletions _examples/TwoMoons_Bimodal_Posterior.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/amortizers.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/attention.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/bernoulli_glm.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/bernoulli_glm_raw.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/gaussian_linear.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/gaussian_linear_uniform.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/gaussian_mixture.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/inverse_kinematics.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/lotka_volterra.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/sir.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/slcp.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/slcp_distractors.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/benchmarks/two_moons.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/computational_utilities.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/configuration.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/coupling_networks.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/default_settings.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/diagnostics.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/exceptions.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/experimental/rectifiers.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/helper_classes.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/helper_functions.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/helper_networks.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/inference_networks.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/losses.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/mcmc.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/sensitivity.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/simulation.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/summary_networks.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/trainers.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/bayesflow/wrappers.html

Large diffs are not rendered by default.

105 changes: 55 additions & 50 deletions _modules/index.html

Large diffs are not rendered by default.

104 changes: 89 additions & 15 deletions _sphinx_design_static/design-tabs.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,101 @@
var sd_labels_by_text = {};
// @ts-check

// Extra JS capability for selected tabs to be synced
// The selection is stored in local storage so that it persists across page loads.

/**
* @type {Record<string, HTMLElement[]>}
*/
let sd_id_to_elements = {};
const storageKeyPrefix = "sphinx-design-tab-id-";

/**
* Create a key for a tab element.
* @param {HTMLElement} el - The tab element.
* @returns {[string, string, string] | null} - The key.
*
*/
function create_key(el) {
let syncId = el.getAttribute("data-sync-id");
let syncGroup = el.getAttribute("data-sync-group");
if (!syncId || !syncGroup) return null;
return [syncGroup, syncId, syncGroup + "--" + syncId];
}

/**
* Initialize the tab selection.
*
*/
function ready() {
const li = document.getElementsByClassName("sd-tab-label");
for (const label of li) {
syncId = label.getAttribute("data-sync-id");
if (syncId) {
label.onclick = onLabelClick;
if (!sd_labels_by_text[syncId]) {
sd_labels_by_text[syncId] = [];
// Find all tabs with sync data

/** @type {string[]} */
let groups = [];

document.querySelectorAll(".sd-tab-label").forEach((label) => {
if (label instanceof HTMLElement) {
let data = create_key(label);
if (data) {
let [group, id, key] = data;

// add click event listener
// @ts-ignore
label.onclick = onSDLabelClick;

// store map of key to elements
if (!sd_id_to_elements[key]) {
sd_id_to_elements[key] = [];
}
sd_id_to_elements[key].push(label);

if (groups.indexOf(group) === -1) {
groups.push(group);
// Check if a specific tab has been selected via URL parameter
const tabParam = new URLSearchParams(window.location.search).get(
group
);
if (tabParam) {
console.log(
"sphinx-design: Selecting tab id for group '" +
group +
"' from URL parameter: " +
tabParam
);
window.sessionStorage.setItem(storageKeyPrefix + group, tabParam);
}
}

// Check is a specific tab has been selected previously
let previousId = window.sessionStorage.getItem(
storageKeyPrefix + group
);
if (previousId === id) {
// console.log(
// "sphinx-design: Selecting tab from session storage: " + id
// );
// @ts-ignore
label.previousElementSibling.checked = true;
}
}
sd_labels_by_text[syncId].push(label);
}
}
});
}

function onLabelClick() {
// Activate other inputs with the same sync id.
syncId = this.getAttribute("data-sync-id");
for (label of sd_labels_by_text[syncId]) {
/**
* Activate other tabs with the same sync id.
*
* @this {HTMLElement} - The element that was clicked.
*/
function onSDLabelClick() {
let data = create_key(this);
if (!data) return;
let [group, id, key] = data;
for (const label of sd_id_to_elements[key]) {
if (label === this) continue;
// @ts-ignore
label.previousElementSibling.checked = true;
}
window.localStorage.setItem("sphinx-design-last-tab", syncId);
window.sessionStorage.setItem(storageKeyPrefix + group, id);
}

document.addEventListener("DOMContentLoaded", ready, false);
1 change: 1 addition & 0 deletions _sphinx_design_static/sphinx-design.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _static/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Sphinx stylesheet -- basic theme.
*
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down
104 changes: 89 additions & 15 deletions _static/design-tabs.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,101 @@
var sd_labels_by_text = {};
// @ts-check

// Extra JS capability for selected tabs to be synced
// The selection is stored in local storage so that it persists across page loads.

/**
* @type {Record<string, HTMLElement[]>}
*/
let sd_id_to_elements = {};
const storageKeyPrefix = "sphinx-design-tab-id-";

/**
* Create a key for a tab element.
* @param {HTMLElement} el - The tab element.
* @returns {[string, string, string] | null} - The key.
*
*/
function create_key(el) {
let syncId = el.getAttribute("data-sync-id");
let syncGroup = el.getAttribute("data-sync-group");
if (!syncId || !syncGroup) return null;
return [syncGroup, syncId, syncGroup + "--" + syncId];
}

/**
* Initialize the tab selection.
*
*/
function ready() {
const li = document.getElementsByClassName("sd-tab-label");
for (const label of li) {
syncId = label.getAttribute("data-sync-id");
if (syncId) {
label.onclick = onLabelClick;
if (!sd_labels_by_text[syncId]) {
sd_labels_by_text[syncId] = [];
// Find all tabs with sync data

/** @type {string[]} */
let groups = [];

document.querySelectorAll(".sd-tab-label").forEach((label) => {
if (label instanceof HTMLElement) {
let data = create_key(label);
if (data) {
let [group, id, key] = data;

// add click event listener
// @ts-ignore
label.onclick = onSDLabelClick;

// store map of key to elements
if (!sd_id_to_elements[key]) {
sd_id_to_elements[key] = [];
}
sd_id_to_elements[key].push(label);

if (groups.indexOf(group) === -1) {
groups.push(group);
// Check if a specific tab has been selected via URL parameter
const tabParam = new URLSearchParams(window.location.search).get(
group
);
if (tabParam) {
console.log(
"sphinx-design: Selecting tab id for group '" +
group +
"' from URL parameter: " +
tabParam
);
window.sessionStorage.setItem(storageKeyPrefix + group, tabParam);
}
}

// Check is a specific tab has been selected previously
let previousId = window.sessionStorage.getItem(
storageKeyPrefix + group
);
if (previousId === id) {
// console.log(
// "sphinx-design: Selecting tab from session storage: " + id
// );
// @ts-ignore
label.previousElementSibling.checked = true;
}
}
sd_labels_by_text[syncId].push(label);
}
}
});
}

function onLabelClick() {
// Activate other inputs with the same sync id.
syncId = this.getAttribute("data-sync-id");
for (label of sd_labels_by_text[syncId]) {
/**
* Activate other tabs with the same sync id.
*
* @this {HTMLElement} - The element that was clicked.
*/
function onSDLabelClick() {
let data = create_key(this);
if (!data) return;
let [group, id, key] = data;
for (const label of sd_id_to_elements[key]) {
if (label === this) continue;
// @ts-ignore
label.previousElementSibling.checked = true;
}
window.localStorage.setItem("sphinx-design-last-tab", syncId);
window.sessionStorage.setItem(storageKeyPrefix + group, id);
}

document.addEventListener("DOMContentLoaded", ready, false);
2 changes: 1 addition & 1 deletion _static/doctools.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Base JavaScript utilities for all Sphinx HTML documentation.
*
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down
4 changes: 2 additions & 2 deletions _static/language_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
* This script contains the language-specific data used by searchtools.js,
* namely the list of stopwords, stemmer, scorer and splitter.
*
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/

var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];


/* Non-minified version is copied as a separate JS file, is available */
/* Non-minified version is copied as a separate JS file, if available */

/**
* Porter Stemmer
Expand Down
64 changes: 32 additions & 32 deletions _static/locales/ar/LC_MESSAGES/booktheme.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,68 +8,68 @@ msgstr ""
"Language: ar\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

msgid "Print to PDF"
msgstr "طباعة إلى PDF"

msgid "Theme by the"
msgstr "موضوع بواسطة"

msgid "Open an issue"
msgstr "افتح قضية"
msgid "Download source file"
msgstr "تنزيل ملف المصدر"

msgid "open issue"
msgstr "قضية مفتوحة"

msgid "Contents"
msgstr "محتويات"

msgid "previous page"
msgstr "الصفحة السابقة"

msgid "Download notebook file"
msgstr "تنزيل ملف دفتر الملاحظات"

msgid "Sphinx Book Theme"
msgstr "موضوع كتاب أبو الهول"

msgid "Fullscreen mode"
msgstr "وضع ملء الشاشة"

msgid "Edit this page"
msgstr "قم بتحرير هذه الصفحة"

msgid "By"
msgstr "بواسطة"

msgid "Copyright"
msgstr "حقوق النشر"

msgid "Download this page"
msgstr "قم بتنزيل هذه الصفحة"

msgid "Source repository"
msgstr "مستودع المصدر"

msgid "previous page"
msgstr "الصفحة السابقة"
msgid "By"
msgstr "بواسطة"

msgid "next page"
msgstr "الصفحة التالية"
msgid "repository"
msgstr "مخزن"

msgid "Last updated on"
msgstr "آخر تحديث في"

msgid "Toggle navigation"
msgstr "تبديل التنقل"

msgid "repository"
msgstr "مخزن"
msgid "Sphinx Book Theme"
msgstr "موضوع كتاب أبو الهول"

msgid "suggest edit"
msgstr "أقترح تحرير"

msgid "open issue"
msgstr "قضية مفتوحة"
msgid "Open an issue"
msgstr "افتح قضية"

msgid "Launch"
msgstr "إطلاق"

msgid "Print to PDF"
msgstr "طباعة إلى PDF"
msgid "Fullscreen mode"
msgstr "وضع ملء الشاشة"

msgid "Edit this page"
msgstr "قم بتحرير هذه الصفحة"

msgid "By the"
msgstr "بواسطة"

msgid "Last updated on"
msgstr "آخر تحديث في"

msgid "Download source file"
msgstr "تنزيل ملف المصدر"

msgid "Download this page"
msgstr "قم بتنزيل هذه الصفحة"
msgid "next page"
msgstr "الصفحة التالية"
Loading

0 comments on commit 138bcfe

Please sign in to comment.