Skip to content

Commit

Permalink
Improve docs
Browse files Browse the repository at this point in the history
  • Loading branch information
moinfar committed Nov 11, 2024
1 parent 5454956 commit aab870e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ dev = [
"twine>=4.0.2",
]
doc = [
"merlin-dataloader==23.8.0",
"docutils>=0.8,!=0.18.*,!=0.19.*",
"sphinx>=4",
"sphinx-book-theme>=1.0.0",
Expand Down
3 changes: 2 additions & 1 deletion src/drvi/model/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from drvi.scvi_tools_based.model import DRVI
from drvi.scvi_tools_based.module import DRVIModule

__all__ = ["DRVI"]
__all__ = ["DRVI", "DRVIModule"]
2 changes: 1 addition & 1 deletion src/drvi/scvi_tools_based/model/_drvi.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class DRVI(VAEMixin, DRVIArchesMixin, UnsupervisedTrainingMixin, BaseModelClass,
categorical_covariates
Categorical Covariates as a list of texts. You can specify emb dimension by appending @dim to each cpvariate.
**model_kwargs
Keyword args for :class:`~drvi.model.DRVI`
Keyword args for :class:`~drvi.model.DRVIModule`
Examples
--------
Expand Down

0 comments on commit aab870e

Please sign in to comment.