Skip to content

Commit

Permalink
fix scale-normalized gene maps
Browse files Browse the repository at this point in the history
  • Loading branch information
ludvb committed Feb 1, 2021
1 parent 8ee5a89 commit 32126e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ line-length = 79

[tool.poetry]
name = "xfuse"
version = "0.2.0"
version = "0.2.1"
description = "Deep spatial data fusion"
authors = ["Ludvig Bergenstråhle <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion xfuse/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion xfuse/analyze/prediction.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def _sample():
data, batch_genes = next(iterator)
except StopIteration:
return
with Session(genes=batch_genes, model=model):
with Session(genes=batch_genes, model=conditional_model):
yield from _run_model(
data=data,
predict_mean=predict_mean,
Expand Down

0 comments on commit 32126e2

Please sign in to comment.