braindecode 1.3.0.dev173577785__py3-none-any.whl → 1.3.0.dev173767962__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of braindecode might be problematic. Click here for more details.

Files changed (50) hide show
  1. braindecode/augmentation/base.py +1 -1
  2. braindecode/datasets/__init__.py +10 -2
  3. braindecode/datasets/base.py +115 -151
  4. braindecode/datasets/bcicomp.py +4 -4
  5. braindecode/datasets/bids.py +3 -3
  6. braindecode/datasets/experimental.py +2 -2
  7. braindecode/datasets/mne.py +3 -5
  8. braindecode/datasets/moabb.py +2 -2
  9. braindecode/datasets/nmt.py +2 -2
  10. braindecode/datasets/sleep_physio_challe_18.py +2 -2
  11. braindecode/datasets/sleep_physionet.py +2 -2
  12. braindecode/datasets/tuh.py +2 -2
  13. braindecode/datasets/xy.py +2 -2
  14. braindecode/datautil/serialization.py +7 -7
  15. braindecode/eegneuralnet.py +2 -0
  16. braindecode/functional/functions.py +6 -2
  17. braindecode/functional/initialization.py +2 -3
  18. braindecode/models/__init__.py +4 -0
  19. braindecode/models/atcnet.py +26 -27
  20. braindecode/models/attentionbasenet.py +39 -32
  21. braindecode/models/base.py +280 -2
  22. braindecode/models/bendr.py +469 -0
  23. braindecode/models/biot.py +2 -0
  24. braindecode/models/ctnet.py +6 -3
  25. braindecode/models/deepsleepnet.py +27 -18
  26. braindecode/models/eegconformer.py +2 -2
  27. braindecode/models/eeginception_erp.py +31 -25
  28. braindecode/models/eegnet.py +1 -1
  29. braindecode/models/labram.py +188 -84
  30. braindecode/models/patchedtransformer.py +640 -0
  31. braindecode/models/signal_jepa.py +109 -27
  32. braindecode/models/sinc_shallow.py +10 -9
  33. braindecode/models/sstdpn.py +11 -11
  34. braindecode/models/summary.csv +2 -0
  35. braindecode/models/usleep.py +26 -21
  36. braindecode/models/util.py +2 -0
  37. braindecode/modules/attention.py +10 -10
  38. braindecode/modules/blocks.py +3 -3
  39. braindecode/modules/filter.py +2 -3
  40. braindecode/modules/layers.py +18 -17
  41. braindecode/preprocessing/preprocess.py +12 -12
  42. braindecode/preprocessing/windowers.py +24 -19
  43. braindecode/samplers/base.py +8 -8
  44. braindecode/version.py +1 -1
  45. {braindecode-1.3.0.dev173577785.dist-info → braindecode-1.3.0.dev173767962.dist-info}/METADATA +4 -2
  46. {braindecode-1.3.0.dev173577785.dist-info → braindecode-1.3.0.dev173767962.dist-info}/RECORD +50 -48
  47. {braindecode-1.3.0.dev173577785.dist-info → braindecode-1.3.0.dev173767962.dist-info}/WHEEL +0 -0
  48. {braindecode-1.3.0.dev173577785.dist-info → braindecode-1.3.0.dev173767962.dist-info}/licenses/LICENSE.txt +0 -0
  49. {braindecode-1.3.0.dev173577785.dist-info → braindecode-1.3.0.dev173767962.dist-info}/licenses/NOTICE.txt +0 -0
  50. {braindecode-1.3.0.dev173577785.dist-info → braindecode-1.3.0.dev173767962.dist-info}/top_level.txt +0 -0
@@ -25,7 +25,12 @@ import pandas as pd
25
25
  from joblib import Parallel, delayed
26
26
  from numpy.typing import ArrayLike
27
27
 
28
- from ..datasets.base import BaseConcatDataset, EEGWindowsDataset, WindowsDataset
28
+ from ..datasets.base import (
29
+ BaseConcatDataset,
30
+ EEGWindowsDataset,
31
+ RawDataset,
32
+ WindowsDataset,
33
+ )
29
34
 
30
35
 
31
36
  class _LazyDataFrame:
@@ -189,7 +194,7 @@ def _get_use_mne_epochs(use_mne_epochs, reject, picks, flat, drop_bad_windows):
189
194
 
190
195
  # XXX it's called concat_ds...
191
196
  def create_windows_from_events(
192
- concat_ds: BaseConcatDataset,
197
+ concat_ds: BaseConcatDataset[RawDataset],
193
198
  trial_start_offset_samples: int = 0,
194
199
  trial_stop_offset_samples: int = 0,
195
200
  window_size_samples: int | None = None,
@@ -206,7 +211,7 @@ def create_windows_from_events(
206
211
  use_mne_epochs: bool | None = None,
207
212
  n_jobs: int = 1,
208
213
  verbose: bool | str | int | None = "error",
209
- ):
214
+ ) -> BaseConcatDataset[WindowsDataset | EEGWindowsDataset]:
210
215
  """Create windows based on events in mne.Raw.
211
216
 
212
217
  This function extracts windows of size window_size_samples in the interval
@@ -228,7 +233,7 @@ def create_windows_from_events(
228
233
 
229
234
  Parameters
230
235
  ----------
231
- concat_ds: BaseConcatDataset
236
+ concat_ds: BaseConcatDataset[RawDataset]
232
237
  A concat of base datasets each holding raw and description.
233
238
  trial_start_offset_samples: int
234
239
  Start offset from original trial onsets, in samples. Defaults to zero.
@@ -268,7 +273,7 @@ def create_windows_from_events(
268
273
  rejection based on flatness is done. See mne.Epochs.
269
274
  on_missing: str
270
275
  What to do if one or several event ids are not found in the recording.
271
- Valid keys are ‘error | ‘warning | ‘ignore’. See mne.Epochs.
276
+ Valid keys are ‘error' | ‘warning' | ‘ignore'. See mne.Epochs.
272
277
  accepted_bads_ratio: float, optional
273
278
  Acceptable proportion of trials with inconsistent length in a raw. If
274
279
  the number of trials whose length is exceeded by the window size is
@@ -286,7 +291,7 @@ def create_windows_from_events(
286
291
 
287
292
  Returns
288
293
  -------
289
- windows_datasets: BaseConcatDataset
294
+ windows_datasets: BaseConcatDataset[WindowsDataset | EEGWindowsDataset]
290
295
  Concatenated datasets of WindowsDataset containing the extracted windows.
291
296
  """
292
297
  _check_windowing_arguments(
@@ -341,7 +346,7 @@ def create_windows_from_events(
341
346
 
342
347
 
343
348
  def create_fixed_length_windows(
344
- concat_ds: BaseConcatDataset,
349
+ concat_ds: BaseConcatDataset[RawDataset],
345
350
  start_offset_samples: int = 0,
346
351
  stop_offset_samples: int | None = None,
347
352
  window_size_samples: int | None = None,
@@ -358,12 +363,12 @@ def create_fixed_length_windows(
358
363
  on_missing: str = "error",
359
364
  n_jobs: int = 1,
360
365
  verbose: bool | str | int | None = "error",
361
- ):
366
+ ) -> BaseConcatDataset[EEGWindowsDataset]:
362
367
  """Windower that creates sliding windows.
363
368
 
364
369
  Parameters
365
370
  ----------
366
- concat_ds: ConcatDataset
371
+ concat_ds: ConcatDataset[RawDataset]
367
372
  A concat of base datasets each holding raw and description.
368
373
  start_offset_samples: int
369
374
  Start offset from beginning of recording in samples.
@@ -398,7 +403,7 @@ def create_fixed_length_windows(
398
403
  by using the _LazyDataFrame (experimental).
399
404
  on_missing: str
400
405
  What to do if one or several event ids are not found in the recording.
401
- Valid keys are ‘error | ‘warning | ‘ignore’. See mne.Epochs.
406
+ Valid keys are ‘error' | ‘warning' | ‘ignore'. See mne.Epochs.
402
407
  n_jobs: int
403
408
  Number of jobs to use to parallelize the windowing.
404
409
  verbose: bool | str | int | None
@@ -406,7 +411,7 @@ def create_fixed_length_windows(
406
411
 
407
412
  Returns
408
413
  -------
409
- windows_datasets: BaseConcatDataset
414
+ windows_datasets: BaseConcatDataset[EEGWindowsDataset]
410
415
  Concatenated datasets of WindowsDataset containing the extracted windows.
411
416
  """
412
417
  stop_offset_samples, drop_last_window = (
@@ -473,11 +478,11 @@ def _create_windows_from_events(
473
478
  verbose="error",
474
479
  use_mne_epochs=False,
475
480
  ):
476
- """Create WindowsDataset from BaseDataset based on events.
481
+ """Create WindowsDataset from RawDataset based on events.
477
482
 
478
483
  Parameters
479
484
  ----------
480
- ds : BaseDataset
485
+ ds : RawDataset
481
486
  Dataset containing continuous data and description.
482
487
  infer_mapping : bool
483
488
  If True, extract all events from all datasets and map them to
@@ -648,11 +653,11 @@ def _create_fixed_length_windows(
648
653
  on_missing="error",
649
654
  verbose="error",
650
655
  ):
651
- """Create WindowsDataset from BaseDataset with sliding windows.
656
+ """Create WindowsDataset from RawDataset with sliding windows.
652
657
 
653
658
  Parameters
654
659
  ----------
655
- ds : BaseDataset
660
+ ds : RawDataset
656
661
  Dataset containing continuous data and description.
657
662
 
658
663
  See `create_fixed_length_windows` for description of other parameters.
@@ -750,7 +755,7 @@ def _create_fixed_length_windows(
750
755
 
751
756
 
752
757
  def create_windows_from_target_channels(
753
- concat_ds,
758
+ concat_ds: BaseConcatDataset[RawDataset],
754
759
  window_size_samples=None,
755
760
  preload=False,
756
761
  picks=None,
@@ -759,7 +764,7 @@ def create_windows_from_target_channels(
759
764
  n_jobs=1,
760
765
  last_target_only=True,
761
766
  verbose="error",
762
- ):
767
+ ) -> BaseConcatDataset[EEGWindowsDataset]:
763
768
  list_of_windows_ds = Parallel(n_jobs=n_jobs)(
764
769
  delayed(_create_windows_from_target_channels)(
765
770
  ds,
@@ -788,11 +793,11 @@ def _create_windows_from_target_channels(
788
793
  on_missing="error",
789
794
  verbose="error",
790
795
  ):
791
- """Create WindowsDataset from BaseDataset using targets `misc` channels from mne.Raw.
796
+ """Create WindowsDataset from RawDataset using targets `misc` channels from mne.Raw.
792
797
 
793
798
  Parameters
794
799
  ----------
795
- ds : BaseDataset
800
+ ds : RawDataset
796
801
  Dataset containing continuous data and description.
797
802
 
798
803
  See `create_fixed_length_windows` for description of other parameters.
@@ -122,14 +122,14 @@ class DistributedRecordingSampler(DistributedSampler):
122
122
  DataFrame with at least one of {subject, session, run} columns for each
123
123
  window in the BaseConcatDataset to sample examples from. Normally
124
124
  obtained with `BaseConcatDataset.get_metadata()`. For instance,
125
- `metadata.head()` might look like this:
126
-
127
- i_window_in_trial i_start_in_trial i_stop_in_trial target subject session run
128
- 0 0 0 500 -1 4 session_T run_0
129
- 1 1 500 1000 -1 4 session_T run_0
130
- 2 2 1000 1500 -1 4 session_T run_0
131
- 3 3 1500 2000 -1 4 session_T run_0
132
- 4 4 2000 2500 -1 4 session_T run_0
125
+ `metadata.head()` might look like this::
126
+
127
+ i_window_in_trial i_start_in_trial i_stop_in_trial target subject session run
128
+ 0 0 0 500 -1 4 session_T run_0
129
+ 1 1 500 1000 -1 4 session_T run_0
130
+ 2 2 1000 1500 -1 4 session_T run_0
131
+ 3 3 1500 2000 -1 4 session_T run_0
132
+ 4 4 2000 2500 -1 4 session_T run_0
133
133
 
134
134
  random_state : np.RandomState | int | None
135
135
  Random state.
braindecode/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "1.3.0.dev173577785"
1
+ __version__ = "1.3.0.dev173767962"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: braindecode
3
- Version: 1.3.0.dev173577785
3
+ Version: 1.3.0.dev173767962
4
4
  Summary: Deep learning software to decode EEG, ECG or MEG signals
5
5
  Author-email: Robin Tibor Schirrmeister <robintibor@gmail.com>
6
6
  Maintainer-email: Alexandre Gramfort <agramfort@meta.com>, Bruno Aristimunha Pinto <b.aristimunha@gmail.com>, Robin Tibor Schirrmeister <robintibor@gmail.com>
@@ -40,6 +40,8 @@ Requires-Dist: linear_attention_transformer
40
40
  Requires-Dist: docstring_inheritance
41
41
  Provides-Extra: moabb
42
42
  Requires-Dist: moabb>=1.2.0; extra == "moabb"
43
+ Provides-Extra: hug
44
+ Requires-Dist: huggingface_hub[torch]>=0.20.0; extra == "hug"
43
45
  Provides-Extra: tests
44
46
  Requires-Dist: pytest; extra == "tests"
45
47
  Requires-Dist: pytest-cov; extra == "tests"
@@ -65,7 +67,7 @@ Requires-Dist: pre-commit; extra == "docs"
65
67
  Requires-Dist: openneuro-py; extra == "docs"
66
68
  Requires-Dist: plotly; extra == "docs"
67
69
  Provides-Extra: all
68
- Requires-Dist: braindecode[docs,moabb,tests]; extra == "all"
70
+ Requires-Dist: braindecode[docs,hug,moabb,tests]; extra == "all"
69
71
  Dynamic: license-file
70
72
 
71
73
  .. image:: https://badges.gitter.im/braindecodechat/community.svg
@@ -1,48 +1,49 @@
1
1
  braindecode/__init__.py,sha256=Ac3LEEyIHWFY_fFh3eAY1GZUqXcUxVSJwOSUCwGEDvQ,182
2
2
  braindecode/classifier.py,sha256=k9vSCtfQbld0YVleDi5rrrmk6k_k5JYEPPBYcNxYjZ8,9807
3
- braindecode/eegneuralnet.py,sha256=dz8k_-2jV7WqkaX4bQG-dmr-vRT7ZtOwJqomXyC9PTw,15287
3
+ braindecode/eegneuralnet.py,sha256=U6kRdT2u8A2Ca0axMTR8IAESBsvgjLMusAbYappKAOk,15368
4
4
  braindecode/regressor.py,sha256=VLfrpiXklwI4onkwue3QmzlBWcvspu0tlrLo9RT1Oiw,9375
5
5
  braindecode/util.py,sha256=J-tBcDJNlMTIFW2mfOy6Ko0nsgdP4obRoEVDeg2rFH0,12686
6
- braindecode/version.py,sha256=SSJ8MNTlQyK3KTk_vuSgYWwWQVZYFFmOs8ivp564RDk,35
6
+ braindecode/version.py,sha256=BdsayThEg3yzs3Co0m87_EnYN-pBoBVgYStz_75MaVM,35
7
7
  braindecode/augmentation/__init__.py,sha256=LG7ONqCufYAF9NZt8POIp10lYXb8iSueYkF-CWGK2Ls,1001
8
- braindecode/augmentation/base.py,sha256=gg7wYsVfa9jfqBddtE03B5ZrPHFFmPl2sa3LOrRnGfo,7325
8
+ braindecode/augmentation/base.py,sha256=nK90HWzNwroDCC61e3bZfIsCdEHmGstJliS-TB6wrK0,7327
9
9
  braindecode/augmentation/functional.py,sha256=lPhGpZcVtgfQ3oV6p6IQLBCWM_Psa60TwxH3Wj1WyOQ,41133
10
10
  braindecode/augmentation/transforms.py,sha256=Ur05yLdROm5pfKTsS2opCWI--X6JwWjP7YMa2KTTZTw,44243
11
- braindecode/datasets/__init__.py,sha256=CTl8ucbG948ZJqntEBELb-Pn8GsZLfFZLgVcB-fhw4k,891
12
- braindecode/datasets/base.py,sha256=_qUuMripcBrc04R7j5wOqW41myo5Y_Ku3OqKa4uRqx4,32176
11
+ braindecode/datasets/__init__.py,sha256=OVv9sQf9eeHyHo9BuLWupFAKAMO9Gz4XXpe0dsLvBfQ,994
12
+ braindecode/datasets/base.py,sha256=BYpG2VofbSQN2UCn97pKg_zhPnL9E9mq7ibliXMUx8Y,30637
13
13
  braindecode/datasets/bbci.py,sha256=BC9o1thEyYBREAo930O7zZz3xZB-l4Odt5j8E_1huXI,19277
14
- braindecode/datasets/bcicomp.py,sha256=ER_XmqxhpoO2FWELMesQXQ40OTe7BXoy7nYDSiZG9kE,7556
15
- braindecode/datasets/bids.py,sha256=4asq1HyQHgJjwW7w-GMlvTVQhi-hR2HWLJ8Z__UrUS4,8846
16
- braindecode/datasets/experimental.py,sha256=Z_uzMNA875-l878LAv7bWiWYJX3QAefmb5quBkcPp7M,8514
17
- braindecode/datasets/mne.py,sha256=Dg6RZAAwd8TVGrvLOPF5B_JrbyGUWg52vWmn6fLMOQM,6135
18
- braindecode/datasets/moabb.py,sha256=JmBcFV7QJT8GCgLNNKWgxJVnEVnO5wd9U_uiIqTIxDM,7091
19
- braindecode/datasets/nmt.py,sha256=E4T8OYBEwWRSjh7VFzmyxaZbf5ufFVEBYYmQEd1ghUU,10430
20
- braindecode/datasets/sleep_physio_challe_18.py,sha256=66A86_9VssszKrVXowb0oFyL3xbF1VRqQK5FtW33QlM,15427
21
- braindecode/datasets/sleep_physionet.py,sha256=jieRx6u-MQ4jn_5Zox_pVV8WjBwXKLv9uq4GXRAZ_58,4087
22
- braindecode/datasets/tuh.py,sha256=iG1hOtdevzKGEVpeuRFDBOnsW_rWa5zEmMFJfYR1hqg,22867
23
- braindecode/datasets/xy.py,sha256=xT-nS_5jpuVKJ0SGqc7Ia0FVpqj86UfuzcYQdEGZdp0,2986
14
+ braindecode/datasets/bcicomp.py,sha256=WwSFfP9whc7Vw5-Jt9vQAHKnRUB5TUe7w945748uGjU,7551
15
+ braindecode/datasets/bids.py,sha256=BxiyGnZuhC56ITUQgJuFv62lgw0LimsSIMRVySgje1A,8843
16
+ braindecode/datasets/experimental.py,sha256=ij7tM_7bXFlvAh3sVVRhoh1CsF9OhMxQC6s4NZyinK8,8515
17
+ braindecode/datasets/mne.py,sha256=5l25ZSnYUX5-jnl4ArwKhVqqm2R852J2T9QdWiJ4npE,6110
18
+ braindecode/datasets/moabb.py,sha256=XsAHcPJYL5unLF4JBSO-8Ka-zs1cX9kew7Gr635jjak,7089
19
+ braindecode/datasets/nmt.py,sha256=vzmO1Ks8oMO7uwXhbysCelyuczSJAFz9QdeXyASshVw,10428
20
+ braindecode/datasets/sleep_physio_challe_18.py,sha256=rpgBtxIsq3qnk7L4ePtCd5_q5Bwr_ZCW3x9izsraoXk,15425
21
+ braindecode/datasets/sleep_physionet.py,sha256=N2KxENTuJb9L1sukPAliAeUD7qxgRrQpQNs6PyaMU6M,4085
22
+ braindecode/datasets/tuh.py,sha256=gdYWzY4F1wKsSSzUaKSRk9q6PPELb0byrgelCt0W9_A,22865
23
+ braindecode/datasets/xy.py,sha256=o6VFUalpgPHp6_ZwwbfV6H7AyCoQST7ugMOYltXqvmI,2984
24
24
  braindecode/datautil/__init__.py,sha256=GB9xOudUhJGDyG08PBrnotw6HnWoWIXAHfRNFO-pxSk,1797
25
- braindecode/datautil/serialization.py,sha256=g_EVg3oTieqFRattw9OdwMaYjfjANVG-uCS3xVkuHjg,13293
25
+ braindecode/datautil/serialization.py,sha256=ewnAOn-QRo7TIudX60pPfR3meWGhYzyhaCqjqLO8gAw,13150
26
26
  braindecode/datautil/util.py,sha256=ZfDoxLieKsgI8xcWQqebV-vJ5pJYRvRRHkEwhwpgoKU,674
27
27
  braindecode/functional/__init__.py,sha256=JPUDFeKtfogEzfrwPaZRBmxexPjBw7AglYMlImaAnWc,413
28
- braindecode/functional/functions.py,sha256=CoEweM6YLhigx0tNmmz6yAc8iQ078sTFY2GeCjK5fFs,8622
29
- braindecode/functional/initialization.py,sha256=BUSC7y2TMsfShpMYBVwm3xg3ODFqWp-STH7yD4sn8zk,1388
30
- braindecode/models/__init__.py,sha256=HY-JKr6d0qYzCmbUAVu9VgpIwABQBYBoMGcqaXBEMOI,2496
31
- braindecode/models/atcnet.py,sha256=8wq13mTrn0ZAjfbO5E_yfQZo8vT4jYs1f9xA1S6UhI8,32212
32
- braindecode/models/attentionbasenet.py,sha256=AK78VvwrZXyJY20zadzDUHl17C-5zcWCd5xPRN7Lr4o,30385
28
+ braindecode/functional/functions.py,sha256=x3_UGovZ9HPnSAL2DtMwHsGm6MdNm0CdHd3-pzHzEto,8649
29
+ braindecode/functional/initialization.py,sha256=f-4jIS9QY-YD-3R7N77UbBJh8GcuDvVUzn6Ad6Gx8LE,1382
30
+ braindecode/models/__init__.py,sha256=ovF_WX8ZkXEkleRwYsMMS7ldLPh8_2NzTeYGVqH9ilg,2581
31
+ braindecode/models/atcnet.py,sha256=XhcxnGYcrAsHPvYwCHUNZaSMzhfvg6Pm_PPy--7-W4A,32216
32
+ braindecode/models/attentionbasenet.py,sha256=bgc6_7jDT_fnfyCtPhI4i6H7Zornxe46-bMoINLl6YE,30416
33
33
  braindecode/models/attn_sleep.py,sha256=m6sdFfD4en2hHf_TpotLPC1hVweJcYZvjgf12bV5FZg,17822
34
- braindecode/models/base.py,sha256=9icrWNZBGbh_VLyB9m8g_K1QyK7s3mh8X-hJ29gEbWs,10802
35
- braindecode/models/biot.py,sha256=d2P1i_8k98SU3FkN_dKPXcCoFVmyQIIrBbI1-F3g-8E,17509
34
+ braindecode/models/base.py,sha256=iufKlZf_Oe7wPkkOvfNPOn387E_np6B9YLeVLHTlRHk,20191
35
+ braindecode/models/bendr.py,sha256=MZQdYFERVeBJnynEXDlCLdn_I0mJtgzzFuMhCXkbMkg,21591
36
+ braindecode/models/biot.py,sha256=LpJ8tXqQL2Zh_vcQnpUHEpAGQrPHtn2cBSTUPFCW8jQ,17546
36
37
  braindecode/models/contrawr.py,sha256=eeR_ik4gNZ3rJLM6Mw9gJ2gTMkZ8CU8C4rN_GQMQTAE,10044
37
- braindecode/models/ctnet.py,sha256=ce5F31q2weBKvg7PL80iDm7za9fhGaCFvNfHoJW_dtg,17315
38
+ braindecode/models/ctnet.py,sha256=ThKoZsosmkNOIKekL8uQVk1kdBlntuDmqM83sH9LgWc,17324
38
39
  braindecode/models/deep4.py,sha256=-s-R3H7so2xlSiPsU226eSwscv1X9xJMYLm3LhZ3mSU,14645
39
- braindecode/models/deepsleepnet.py,sha256=wGSAXW73Ga1-HFbn7kXiLeGsJceiqZyMLZnX2UZZXWw,15207
40
- braindecode/models/eegconformer.py,sha256=rxMAmqErDVLq7nS77CnTtpcC3C2OR_EoZ8-jG-dKP9I,17433
41
- braindecode/models/eeginception_erp.py,sha256=FYXoM-u4kOodMzGgvKDn7IwJwHl9Z0iiWx9bVHiO9EY,16324
40
+ braindecode/models/deepsleepnet.py,sha256=ht2MDuUp-pQBJTTWNEgN4_Orxz01yVyXhxYND6vgJFA,15263
41
+ braindecode/models/eegconformer.py,sha256=z8oSuo1Dv-MKGyxCFQVxQa3sbeku8v8u66c3Qjig38c,17429
42
+ braindecode/models/eeginception_erp.py,sha256=aAjpweNixFgOSL47r-IjHFZujJje8a7TWudtbYdY98M,16410
42
43
  braindecode/models/eeginception_mi.py,sha256=VoWtsaWj1xQ4FlrvCbnPvo8eosufYUmTrL4uvFtqKcg,12456
43
44
  braindecode/models/eegitnet.py,sha256=feXFmPCd-Ejxt7jgWPen1Ag0-oSclDVQai0Atwu9d_A,9827
44
45
  braindecode/models/eegminer.py,sha256=ouKZah9Q7_sxT7DJJMcPObwVxNQE87sEljJg6QwiQNw,9847
45
- braindecode/models/eegnet.py,sha256=i5HzBKTd82fTlKDfB42uc14HpDYxN29SGPfCa4ON5gk,13686
46
+ braindecode/models/eegnet.py,sha256=qmxQZa-owqEuha7iwOAdPQU29DoLpEyNjH-oouddWLc,13684
46
47
  braindecode/models/eegnex.py,sha256=eahHolFl15LwNWeC5qjQqUGqURibQZIV425rI1p-dG8,13604
47
48
  braindecode/models/eegsimpleconv.py,sha256=6V5ZQNWijmd3-2wv7lJB_HGBS3wHWWVrKoNIeWTXu-w,7300
48
49
  braindecode/models/eegtcnet.py,sha256=Y53uJEX_hoB6eHCew9SIfzNxCYea8UhljDARJTk-Tq8,10837
@@ -51,30 +52,31 @@ braindecode/models/fblightconvnet.py,sha256=d5MwhawhkjilAMo0ckaYMxJhdGMEuorWgHX-
51
52
  braindecode/models/fbmsnet.py,sha256=9bZn2_n1dTrI1Qh3Sz9zMZnH_a-Yq-13UHYSmF6r_UE,11659
52
53
  braindecode/models/hybrid.py,sha256=hA8jwD3_3LL71BxUjRM1dkhqlHU9E9hjuDokh-jBq-4,4024
53
54
  braindecode/models/ifnet.py,sha256=Y2bwfko3SDjD74AzgUEzgMhKJFGCCw_Q_Noh5VONEjQ,15137
54
- braindecode/models/labram.py,sha256=vcrpwiu4F-djtIPscFbtP2Y0jTosyR_cXnOMQQRGPLw,41798
55
+ braindecode/models/labram.py,sha256=3wQ0XwPT8ISPAyEe6_OaC5gqjH3ZYSYCMNv8OXkssvY,46638
55
56
  braindecode/models/msvtnet.py,sha256=hxeCLkHS6w2w89YlLfEPCyQ4XQQpt45bEYPiQJ9SFzY,12642
57
+ braindecode/models/patchedtransformer.py,sha256=9TY9l2X4EoCuE9IoOObjubKFRdmsN5lbrVQLnmr66VY,23444
56
58
  braindecode/models/sccnet.py,sha256=C7vdwIR5cI6wJCl5f8TnGQG6qinq21y4HG6l-D5AwbY,11971
57
59
  braindecode/models/shallow_fbcsp.py,sha256=7U07DJBrm2JHV8v5ja-xuE5-IH5tfmryhJtrfO1n4jk,7531
58
- braindecode/models/signal_jepa.py,sha256=UeSkeAM3Qmx8bbAqHCj5nP-PtZM00_5SGA8ibo9mptc,37079
59
- braindecode/models/sinc_shallow.py,sha256=Ilv8K1XhMGiRTBtQdq7L595i6cEFYOBe0_UDv-LqL7s,11907
60
+ braindecode/models/signal_jepa.py,sha256=bBujhM9ItIJisKvbxEi5e1yuV-0mBb41GlyMeEs_TkA,41124
61
+ braindecode/models/sinc_shallow.py,sha256=SrYm45xaffDTP-SjWso89IvOgBFhQRO3BsFZGNt_OrI,11880
60
62
  braindecode/models/sleep_stager_blanco_2020.py,sha256=vXulnDYutEFLM0UPXyAI0YIj5QImUMVEmYZb78j34H8,6034
61
63
  braindecode/models/sleep_stager_chambon_2018.py,sha256=8w8IR2PsfG0jSc3o0YVopgHpOvCHNIuMi7-QRJOYEW4,5245
62
64
  braindecode/models/sparcnet.py,sha256=MG1OB91guI7ssKRk8GvWlzUvaxo_otaYnbEGzNUZVyg,13973
63
- braindecode/models/sstdpn.py,sha256=O0OuWy0fAI3JcVoIhvU2rAStBfzlu6QMqa20z-UOjXY,35099
64
- braindecode/models/summary.csv,sha256=22s_roMRlLQkDAuELd42zaNgPgiprnjYsXJ2L7xkK90,6901
65
+ braindecode/models/sstdpn.py,sha256=wJv-UYP1q8cMGp2wU1efzIZiigRmkJ8uY22rNB2D7Wc,35077
66
+ braindecode/models/summary.csv,sha256=vFmhpCGFZlxC9Zm8KLBaGRHvZZfdRY85NAGj1Wyv1yU,7209
65
67
  braindecode/models/syncnet.py,sha256=nrWJC5ijCSWKVZyRn-dmOuc1t5vk2C6tx8U3U4j5d5Y,8362
66
68
  braindecode/models/tcn.py,sha256=SQu56H9zdbcbbDIXZVgZtJg7es8CRAJ7z-IBnmf4UWM,8158
67
69
  braindecode/models/tidnet.py,sha256=HSUL1al6gaRbJ-BRYAAs4KDvLuKEvh0NnBfAsPeWMpM,11837
68
70
  braindecode/models/tsinception.py,sha256=nnQxzpqRy9FPuN5xgh9fNQ386VbreQ_nZBSFNkSfal0,10356
69
- braindecode/models/usleep.py,sha256=5uztUHX70T_LurqRob_XmVnKkZDwt74x2Iz181M7s54,17233
70
- braindecode/models/util.py,sha256=IKYRfYLvdgYq1B4EnmyKwJJ7Vb4ObktRKz5lf7h0XuA,5300
71
+ braindecode/models/usleep.py,sha256=oZv2Z78d2jfyyh-LbRBSgGfWjP8YugcXEHvQAENM_Q8,17296
72
+ braindecode/models/util.py,sha256=nrYBdd0FTCoYxgg21oz1UlW-PACx-0-_EyvMQua0QI8,5414
71
73
  braindecode/modules/__init__.py,sha256=PD2LpeSHWW_MgEef7-G8ief5gheGObzsIoacchxWuyA,1756
72
74
  braindecode/modules/activation.py,sha256=lTO2IjZWBDeXZ4ZVDgLmTDmxHdqyAny3Fsy07HY9tmQ,1466
73
- braindecode/modules/attention.py,sha256=ISE11jXAvMqKpawZilg8i7lDX5mkuvpEplrh_CtGEkk,24102
74
- braindecode/modules/blocks.py,sha256=QE34HBg7kmEj0z-8dQZ1jJErLRPcniGIorMTeIArpv4,3621
75
+ braindecode/modules/attention.py,sha256=N-GYLyDV5crKFg08x-lkosMjaOTJv8lk_2p1Jkh_PdU,24142
76
+ braindecode/modules/blocks.py,sha256=M_jWtr9kNOP-hZVVzb9hj-jsSV1mvv-eX1qtV5MacEU,3617
75
77
  braindecode/modules/convolution.py,sha256=gZMMOa-2gy1nfduA_j2ezgdIdq5Bi2PtonNomWA4D8k,8481
76
- braindecode/modules/filter.py,sha256=iCz0HiGKrBS09m3aGiNnZEt8jpYOOrmn6SpPCUcuHfU,25291
77
- braindecode/modules/layers.py,sha256=w_tAGcm8BDFiyMdAYM4DNLx46zIUted8B6my8_jtpps,3724
78
+ braindecode/modules/filter.py,sha256=8Li7AYQeN5D2A0Q14m2LDlQBZJbVZoiH50A2EkGgqZc,25228
79
+ braindecode/modules/layers.py,sha256=LqkXuSaSPKD9qWBy7jYLJ9lBSHObYsmwfgGEFFZ6xq0,3659
78
80
  braindecode/modules/linear.py,sha256=pNhSUU0u-IGEUCjAfEDq_TJWnIJMWuOk7Y5L-7I8Meg,1702
79
81
  braindecode/modules/parametrization.py,sha256=sTvV21-sdpqpiY2PzwDebi7SeEvkFw8yDgA6OqJDo34,1310
80
82
  braindecode/modules/stats.py,sha256=ETqZH6PPyYCss2PKBDNrO4uUeijR4bxvjCQCXjNJkH4,2398
@@ -82,10 +84,10 @@ braindecode/modules/util.py,sha256=tVXEhzeTsYrr_wZ5CiXaq3VYGtC5TmGEEW2hMYjTQAE,2
82
84
  braindecode/modules/wrapper.py,sha256=Z-aZ4wxA0psYefMOfj03r7D1XjD4az6GpZpaQoDPJv0,2421
83
85
  braindecode/preprocessing/__init__.py,sha256=V0iwdzb6DzpUaCabA7I6HmOqXK_XvTbpP5HaEduSJ4s,776
84
86
  braindecode/preprocessing/mne_preprocess.py,sha256=_Jczaitqbx16utsUOhnonEcoExf6jPsWNwVOVvoKFfU,2210
85
- braindecode/preprocessing/preprocess.py,sha256=da_-Tn1NLPunsZC2-uzzgCYgdm_Xj-CIJjwf_CTMuFs,17899
86
- braindecode/preprocessing/windowers.py,sha256=6w6mOnroGWnV7tS23UagZZepswaxaL00S45Jr5AViRE,36551
87
+ braindecode/preprocessing/preprocess.py,sha256=KV8CXOyv7Ns2dAQJfz6p3h5Ird-kCb9-ySA_nP7urb0,17811
88
+ braindecode/preprocessing/windowers.py,sha256=AABYuMNNkU5Qf8EC-atSuAvoIwlMGzM1AkXLOwH0TA0,36837
87
89
  braindecode/samplers/__init__.py,sha256=TLuO6gXv2WioJdX671MI_CHVSsOfbjnly1Xv9K3_WdA,452
88
- braindecode/samplers/base.py,sha256=z_Txp9cEwUmIBL0J6FPJbx1cMSsU9l9mxymRCGqNss0,15111
90
+ braindecode/samplers/base.py,sha256=PTa4gGAKXH1Tnx4vBXBAb43x7wQKVvqK1mlM_zE3yY4,15133
89
91
  braindecode/samplers/ssl.py,sha256=C-FKopnbncN_-spQPCrgljY5Qds4fgTLr2TG3s_-QqU,9146
90
92
  braindecode/training/__init__.py,sha256=sxtfI6MgxX3aP03EFc0wJYA37uULoL9SQyUao1Oxyn0,523
91
93
  braindecode/training/callbacks.py,sha256=LqXqzJd6s3w0pvAKy9TEVTxWwVRyWNEu2uyWVsvb9RQ,839
@@ -94,9 +96,9 @@ braindecode/training/scoring.py,sha256=WRkwqbitA3m_dzRnGp2ZIZPge5Nhx9gAEQhIHzeH4
94
96
  braindecode/visualization/__init__.py,sha256=4EER_xHqZIDzEvmgUEm7K1bgNKpyZAIClR9ZCkMuY4M,240
95
97
  braindecode/visualization/confusion_matrices.py,sha256=qIWMLEHow5CJ7PhGggD8mnD55Le6xhma9HSzt4R33fc,9509
96
98
  braindecode/visualization/gradients.py,sha256=KZo-GA0uwiwty2_94j2IjmCR2SKcfPb1Bi3sQq7vpTk,2170
97
- braindecode-1.3.0.dev173577785.dist-info/licenses/LICENSE.txt,sha256=7rg7k6hyj8m9whQ7dpKbqnCssoOEx_Mbtqb4uSOjljE,1525
98
- braindecode-1.3.0.dev173577785.dist-info/licenses/NOTICE.txt,sha256=sOxuTbalPxTM8H6VqtvGbXCt_BoOF7JevEYG_knqbm4,620
99
- braindecode-1.3.0.dev173577785.dist-info/METADATA,sha256=3dpgn3EBp_hBftm9mGp3PBLhkRBRIGxlpob2lzVCu1w,7129
100
- braindecode-1.3.0.dev173577785.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
101
- braindecode-1.3.0.dev173577785.dist-info/top_level.txt,sha256=pHsWQmSy0uhIez62-HA9j0iaXKvSbUL39ifFRkFnChA,12
102
- braindecode-1.3.0.dev173577785.dist-info/RECORD,,
99
+ braindecode-1.3.0.dev173767962.dist-info/licenses/LICENSE.txt,sha256=7rg7k6hyj8m9whQ7dpKbqnCssoOEx_Mbtqb4uSOjljE,1525
100
+ braindecode-1.3.0.dev173767962.dist-info/licenses/NOTICE.txt,sha256=sOxuTbalPxTM8H6VqtvGbXCt_BoOF7JevEYG_knqbm4,620
101
+ braindecode-1.3.0.dev173767962.dist-info/METADATA,sha256=YgdizBPkqcdKjZI2BdtVUjC5uBp_YK8Y7GFr68D1jws,7215
102
+ braindecode-1.3.0.dev173767962.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
103
+ braindecode-1.3.0.dev173767962.dist-info/top_level.txt,sha256=pHsWQmSy0uhIez62-HA9j0iaXKvSbUL39ifFRkFnChA,12
104
+ braindecode-1.3.0.dev173767962.dist-info/RECORD,,