Coverage for src/sleepless/configs/models_and_models_parameters/chambon2018_baseline/randomforest_2eeg_eog.py: 0%

5 statements  

« prev     ^ index     » next       coverage.py v7.4.2, created at 2024-04-04 17:28 +0200

1# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute <contact@idiap.ch> 

2# 

3# SPDX-License-Identifier: GPL-3.0-or-later 

4"""Config random forest grid-search. 

5 

6For chambon-baseline : 

7 

8* Reference: [Chambon-2018]_ 

9""" 

10 

11 

12from ....data.transforms import FeatureExtractorChambon 

13from ...grid_search.randomforest import grid_search 

14 

15model = grid_search 

16 

17model_parameters = { 

18 "transform": [FeatureExtractorChambon(["Fpz-Cz", "Pz-Oz", "horizontal"])], 

19 "grid-search": {"seed": 42}, 

20}