Coverage for src/sleepless/configs/datasets/EDF/train_sc_filtered.py: 0%

4 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"""Cross subset protocols: 

5 

6In this protocol all the raw data have been filtered with a pass band filter [0.3,30] Hz. 

7 

8Train split = train split sc, 

9 

10Validation split = validation split sc, 

11 

12Test split = test split sc, train split st, validation split st, test split st, 

13""" 

14 

15from .sc_filtered import dataset as sc_dataset 

16from .st_filtered import dataset_as_test as st_dataset 

17 

18dataset = sc_dataset | st_dataset