Skip to content

Commit

Permalink
add mathjax
Browse files Browse the repository at this point in the history
  • Loading branch information
jykr committed Jun 20, 2024
1 parent 97607be commit 366944c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion bean/model/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,6 @@ def MixtureNormalModel(
if "mu_scale" in prior_params:
mu_scale = prior_params["mu_scale"]
mu_dist = dist.Normal(mu_loc, mu_scale)

# Set the prior for phenotype means
with pyro.plate("guide_plate0", 1):
with pyro.plate("guide_plate1", data.n_targets):
Expand Down
6 changes: 1 addition & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = [
"sphinxarg.ext",
"m2r",
"sphinx.ext.extlinks",
]
extensions = ["sphinxarg.ext", "m2r", "sphinx.ext.extlinks", "sphinx.ext.mathjax"]

templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
Expand Down
5 changes: 5 additions & 0 deletions tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,3 +224,8 @@ def test_run_tiling_no_translation():
)
except subprocess.CalledProcessError as exc:
raise exc


# TODO: make test data for --prior-params
# TODO: semantic testing on splitting a single screen into two to train
# TODO: add test using --prior-params

0 comments on commit 366944c

Please sign in to comment.