Skip to content

Commit

Permalink
name change
Browse files Browse the repository at this point in the history
  • Loading branch information
Militeee committed Apr 23, 2024
1 parent 3748925 commit 592697d
Show file tree
Hide file tree
Showing 6 changed files with 1,634 additions and 33 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Interested in contributing? Check out the contributing guidelines. Please note t

- [ ] Final API Documnetation
- [X] Tutorial math on AA
- [ ] Tutorial parameters and networks
- [X] Tutorial parameters and networks
- [X] Quick start
- [ ] Allow the user to specify its own encoder/decoder
- [ ] Provide some module builders
Expand Down
9 changes: 9 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@

nb_execution_mode = "off"

def skip_submodules(app, what, name, obj, skip, options):
if what == "module":
skip = True
return skip


def setup(sphinx):
sphinx.connect("autoapi-skip-member", skip_submodules)

# -- General configuration ---------------------------------------------------

# Add any Sphinx extension module names here, as strings. They can be
Expand Down
560 changes: 532 additions & 28 deletions docs/implementation_and_parameters.ipynb

Large diffs are not rendered by default.

1,088 changes: 1,088 additions & 0 deletions notebooks/implementation_and_parameters.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions notebooks/test_encoder_decoder.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "scdeepaa",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand All @@ -883,7 +883,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.6"
"version": "3.9.15"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions src/midaa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from midaa.Plots import plot_archetypes_simplex, plot_ELBO, plot_ELBO_across_runs
from midaa.DataGeneration import generate_synthetic_data

__all__ = ["fit_MIDAA", "load_model_from_state_dict",
__all__ = ("fit_MIDAA", "load_model_from_state_dict",
"get_input_params_adata", "add_to_obs_adata",
"plot_archetypes_simplex", "plot_ELBO",
"plot_ELBO_across_runs", "generate_synthetic_data"]
"plot_ELBO_across_runs", "generate_synthetic_data")

0 comments on commit 592697d

Please sign in to comment.