Skip to content

Commit f642e8d

Browse files
authored
Tag pocalypse (#436)
* aesara -> Aasara * remove full "Bayesian additive regression trees" tag, leaving BART * bayesian workflow -> Bayesian workflow * remove truncation tag, leaving truncated * remove gaussian processes, leaving gaussian process tag * remove censoring, leaving censored * remove predictions and prediction, leave posterior predictive * removing hierarchical, leaving hierarchical model * quasi experimental design -> quasi experiments * remove multi level model tag * remove pymc3 tags * tag: pca -> PCA
1 parent 84110d6 commit f642e8d

26 files changed

+120
-108
lines changed

examples/case_studies/BART_introduction.ipynb

Lines changed: 13 additions & 11 deletions
Large diffs are not rendered by default.

examples/case_studies/GEV.ipynb

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

examples/case_studies/factor_analysis.ipynb

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.

examples/case_studies/putting_workflow.ipynb

Lines changed: 23 additions & 18 deletions
Large diffs are not rendered by default.

examples/case_studies/rugby_analytics.ipynb

Lines changed: 14 additions & 14 deletions
Large diffs are not rendered by default.

examples/causal_inference/regression_discontinuity.ipynb

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

examples/gaussian_processes/gaussian_process.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"# Gaussian Processes using numpy kernel\n",
99
"\n",
1010
":::{post} Jul 31, 2022\n",
11-
":tags: gaussian processes, \n",
11+
":tags: gaussian process, \n",
1212
":category: advanced\n",
1313
":author: Chris Fonnesbeck, Ana Rita Santos and Sandra Meneses\n",
1414
":::"

examples/generalized_linear_models/GLM-simpsons-paradox.ipynb

Lines changed: 9 additions & 9 deletions
Large diffs are not rendered by default.

examples/generalized_linear_models/GLM-truncated-censored-regression.ipynb

Lines changed: 14 additions & 9 deletions
Large diffs are not rendered by default.

examples/howto/data_container.ipynb

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

examples/howto/howto_debugging.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"# How to debug a model\n",
99
"\n",
1010
":::{post} August 2, 2022\n",
11-
":tags: debugging, aesara\n",
11+
":tags: debugging, Aesara\n",
1212
":category: beginner\n",
1313
":author: Thomas Wiecki, Igor Kuvychko\n",
1414
":::"

examples/survival_analysis/censored_data.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"# Censored Data Models\n",
99
"\n",
1010
":::{post} May, 2022\n",
11-
":tags: censoring, survival analysis \n",
11+
":tags: censored, survival analysis \n",
1212
":category: intermediate, how-to\n",
1313
":author: Luis Mario Domenzain\n",
1414
":::"
@@ -726,7 +726,7 @@
726726
"name": "python",
727727
"nbconvert_exporter": "python",
728728
"pygments_lexer": "ipython3",
729-
"version": "3.10.4"
729+
"version": "3.10.6"
730730
}
731731
},
732732
"nbformat": 4,

examples/variational_inference/GLM-hierarchical-advi-minibatch.ipynb

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

myst_nbs/case_studies/BART_introduction.myst.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jupytext:
66
format_version: 0.13
77
jupytext_version: 1.13.7
88
kernelspec:
9-
display_name: Python 3 (ipykernel)
9+
display_name: Python 3.10.6 ('pymc_env')
1010
language: python
1111
name: python3
1212
---
1313

1414
(BART_introduction)=
1515
# Bayesian Additive Regression Trees: Introduction
1616
:::{post} Dec 21, 2021
17-
:tags: BART, Bayesian additive regression trees, non-parametric, regression
17+
:tags: BART, non-parametric, regression
1818
:category: intermediate, explanation
1919
:author: Osvaldo Martin
2020
:::

myst_nbs/case_studies/GEV.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ kernelspec:
1616
# Generalized Extreme Value Distribution
1717

1818
:::{post} Sept 27, 2022
19-
:tags: extreme, inference, prediction
19+
:tags: extreme, inference, posterior predictive
2020
:category: beginner
2121
:author: Colin Caprani
2222
:::

myst_nbs/case_studies/factor_analysis.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ substitutions:
1818
# Factor analysis
1919

2020
:::{post} 19 Mar, 2022
21-
:tags: factor analysis, matrix factorization, pca
21+
:tags: factor analysis, matrix factorization, PCA
2222
:category: advanced, how-to
2323
:author: Chris Hartl, Christopher Krapu, Oriol Abril-Pla
2424
:::

myst_nbs/case_studies/putting_workflow.myst.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jupytext:
66
format_version: 0.13
77
jupytext_version: 1.13.7
88
kernelspec:
9-
display_name: Python 3 (ipykernel)
9+
display_name: Python 3.10.6 ('pymc_env')
1010
language: python
1111
name: python3
1212
substitutions:
@@ -18,7 +18,7 @@ substitutions:
1818
# Model building and expansion for golf putting
1919

2020
:::{post} Apr 2, 2022
21-
:tags: bayesian workflow, model expansion, sports
21+
:tags: Bayesian workflow, model expansion, sports
2222
:category: intermediate, how-to
2323
:author: Colin Carroll, Marco Gorelli, Oriol Abril-Pla
2424
:::

myst_nbs/case_studies/rugby_analytics.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ substitutions:
1616
# A Hierarchical model for Rugby prediction
1717

1818
:::{post} 19 Mar, 2022
19-
:tags: hierarchical, sports
19+
:tags: hierarchical model, sports
2020
:category: intermediate, how-to
2121
:author: Peadar Coyle, Meenal Jhajharia, Oriol Abril-Pla
2222
:::

myst_nbs/causal_inference/regression_discontinuity.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ kernelspec:
1616
# Regression discontinuity design analysis
1717

1818
:::{post} April, 2022
19-
:tags: regression, causal inference, quasi experimental design, counterfactuals
19+
:tags: regression, causal inference, quasi experiments, counterfactuals
2020
:category: beginner, explanation
2121
:author: Benjamin T. Vincent
2222
:::

myst_nbs/gaussian_processes/gaussian_process.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kernelspec:
1515
# Gaussian Processes using numpy kernel
1616

1717
:::{post} Jul 31, 2022
18-
:tags: gaussian processes,
18+
:tags: gaussian process,
1919
:category: advanced
2020
:author: Chris Fonnesbeck, Ana Rita Santos and Sandra Meneses
2121
:::

myst_nbs/generalized_linear_models/GLM-simpsons-paradox.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kernelspec:
1515
# Simpson's paradox and mixed models
1616

1717
:::{post} March, 2022
18-
:tags: regression, hierarchical model, linear model, multi level model, posterior predictive, Simpson's paradox
18+
:tags: regression, hierarchical model, linear model, posterior predictive, Simpson's paradox
1919
:category: beginner
2020
:author: Benjamin T. Vincent
2121
:::

myst_nbs/generalized_linear_models/GLM-truncated-censored-regression.myst.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jupytext:
66
format_version: 0.13
77
jupytext_version: 1.13.7
88
kernelspec:
9-
display_name: Python 3 (ipykernel)
9+
display_name: Python 3.10.6 ('pymc_env')
1010
language: python
1111
name: python3
1212
---
@@ -15,7 +15,7 @@ kernelspec:
1515
# Bayesian regression with truncated or censored data
1616

1717
:::{post} September, 2022
18-
:tags: censored, censoring, generalized linear model, regression, truncated, truncation
18+
:tags: censored, generalized linear model, regression, truncated
1919
:category: beginner
2020
:author: Benjamin T. Vincent
2121
:::

myst_nbs/howto/data_container.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kernelspec:
1515
# Using shared variables (`Data` container adaptation)
1616

1717
:::{post} Dec 16, 2021
18-
:tags: posterior predictive, predictions, shared data
18+
:tags: posterior predictive, shared data
1919
:category: beginner
2020
:author: Juan Martin Loyola, Kavya Jaiswal, Oriol Abril
2121
:::

myst_nbs/howto/howto_debugging.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kernelspec:
1515
# How to debug a model
1616

1717
:::{post} August 2, 2022
18-
:tags: debugging, aesara
18+
:tags: debugging, Aesara
1919
:category: beginner
2020
:author: Thomas Wiecki, Igor Kuvychko
2121
:::

myst_nbs/survival_analysis/censored_data.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kernelspec:
1515
# Censored Data Models
1616

1717
:::{post} May, 2022
18-
:tags: censoring, survival analysis
18+
:tags: censored, survival analysis
1919
:category: intermediate, how-to
2020
:author: Luis Mario Domenzain
2121
:::

myst_nbs/variational_inference/GLM-hierarchical-advi-minibatch.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ kernelspec:
1414
# GLM: Mini-batch ADVI on hierarchical regression model
1515

1616
:::{post} Sept 23, 2021
17-
:tags: generalized linear model, hierarchical model, pymc3.Minibatch, pymc3.Model, pymc3.NUTS, pymc3.Normal, pymc3.Uniform, variational inference
17+
:tags: generalized linear model, hierarchical model, variational inference
1818
:category: intermediate
1919
:::
2020

0 commit comments

Comments
 (0)