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

4 statements  

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

1"""Decoding tools and algorithms.""" 

2 

3from nilearn.decoding.decoder import ( 

4 Decoder, 

5 DecoderRegressor, 

6 FREMClassifier, 

7 FREMRegressor, 

8) 

9from nilearn.decoding.searchlight import SearchLight 

10from nilearn.decoding.space_net import SpaceNetClassifier, SpaceNetRegressor 

11 

12__all__ = [ 

13 "Decoder", 

14 "DecoderRegressor", 

15 "FREMClassifier", 

16 "FREMRegressor", 

17 "SearchLight", 

18 "SpaceNetClassifier", 

19 "SpaceNetRegressor", 

20]