Coverage for nilearn/decomposition/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-18 13:00 +0200

1"""The :mod:`nilearn.decomposition` module includes a subject level \ 

2variant of the :term:`ICA` called Canonical :term:`ICA`. 

3""" 

4 

5from .canica import CanICA 

6from .dict_learning import DictLearning 

7 

8__all__ = ["CanICA", "DictLearning"]