Skip to content

Commit f446ac8

Browse files
ori-kron-wiscanergenpre-commit-ci[bot]
authored
feat: TotalANVI model updated (#3259)
Co-authored-by: Can Ergen <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent f4f7f3c commit f446ac8

File tree

17 files changed

+1757
-88
lines changed

17 files changed

+1757
-88
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ to [Semantic Versioning]. Full commit history is available in the
1515
- Add supervised module class {class}`scvi.module.base.SupervisedModuleClass`. {pr}`3237`.
1616
- Add get normalized function model property for any generative model {pr}`3238` and changed
1717
get_accessibility_estimates to get_normalized_accessibility, where needed.
18+
- Add {class}`scvi.external.TOTALANVI`. {pr}`3259`.
1819
- Add Early stopping KL warmup steps. {pr}`3262`.
1920
- Add Minification option to {class}`~scvi.model.LinearSCVI` {pr}`3294`.
2021

docs/tutorials/notebooks

src/scvi/external/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
from .stereoscope import RNAStereoscope, SpatialStereoscope
1313
from .sysvi import SysVI
1414
from .tangram import Tangram
15+
from .totalanvi import TOTALANVI
1516
from .velovi import VELOVI
1617

1718
__all__ = [
@@ -23,6 +24,7 @@
2324
"SpatialStereoscope",
2425
"CellAssign",
2526
"Tangram",
27+
"TOTALANVI",
2628
"SCBASSET",
2729
"POISSONVI",
2830
"ContrastiveVI",
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from ._model import TOTALANVI
2+
3+
__all__ = ["TOTALANVI"]

0 commit comments

Comments
 (0)