braindecode 1.3.0.dev175435903__tar.gz → 1.3.1__tar.gz

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.
Files changed (702) hide show
  1. braindecode-1.3.1/PKG-INFO +230 -0
  2. braindecode-1.3.1/README.rst +146 -0
  3. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/augmentation/__init__.py +5 -3
  4. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/augmentation/base.py +8 -5
  5. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/augmentation/functional.py +25 -22
  6. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/augmentation/transforms.py +51 -42
  7. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/classifier.py +11 -16
  8. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/__init__.py +5 -3
  9. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/base.py +17 -13
  10. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/bbci.py +13 -14
  11. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/bcicomp.py +4 -5
  12. braindecode-1.3.1/braindecode/datasets/bids/__init__.py +54 -0
  13. braindecode-1.3.0.dev175435903/braindecode/datasets/bids.py → braindecode-1.3.1/braindecode/datasets/bids/datasets.py +12 -18
  14. braindecode-1.3.1/braindecode/datasets/bids/format.py +717 -0
  15. {braindecode-1.3.0.dev175435903/braindecode/datasets → braindecode-1.3.1/braindecode/datasets/bids}/hub.py +375 -350
  16. braindecode-1.3.1/braindecode/datasets/bids/hub_format.py +810 -0
  17. braindecode-1.3.1/braindecode/datasets/bids/hub_io.py +197 -0
  18. {braindecode-1.3.0.dev175435903/braindecode/datasets → braindecode-1.3.1/braindecode/datasets/bids}/hub_validation.py +2 -1
  19. braindecode-1.3.0.dev175435903/braindecode/datasets/experimental.py → braindecode-1.3.1/braindecode/datasets/bids/iterable.py +8 -6
  20. braindecode-1.3.1/braindecode/datasets/chb_mit.py +163 -0
  21. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/mne.py +19 -19
  22. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/moabb.py +10 -10
  23. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/nmt.py +58 -56
  24. braindecode-1.3.1/braindecode/datasets/siena.py +162 -0
  25. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/sleep_physio_challe_18.py +3 -5
  26. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/sleep_physionet.py +5 -5
  27. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/tuh.py +21 -18
  28. braindecode-1.3.1/braindecode/datasets/utils.py +67 -0
  29. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/xy.py +10 -9
  30. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datautil/__init__.py +3 -3
  31. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datautil/serialization.py +21 -19
  32. braindecode-1.3.1/braindecode/datautil/util.py +154 -0
  33. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/eegneuralnet.py +22 -52
  34. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/functional/functions.py +7 -10
  35. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/functional/initialization.py +3 -2
  36. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/__init__.py +5 -3
  37. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/atcnet.py +32 -28
  38. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/attentionbasenet.py +34 -38
  39. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/attn_sleep.py +17 -17
  40. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/base.py +6 -6
  41. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/bendr.py +49 -25
  42. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/biot.py +36 -7
  43. braindecode-1.3.1/braindecode/models/brainmodule.py +845 -0
  44. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/config.py +23 -20
  45. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/contrawr.py +3 -3
  46. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/ctnet.py +2 -2
  47. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/deep4.py +1 -1
  48. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/deepsleepnet.py +3 -3
  49. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eegconformer.py +4 -4
  50. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eeginception_erp.py +1 -1
  51. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eeginception_mi.py +3 -3
  52. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eegitnet.py +2 -2
  53. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eegminer.py +1 -1
  54. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eegnet.py +2 -2
  55. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eegnex.py +1 -1
  56. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eegsimpleconv.py +1 -1
  57. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eegsym.py +7 -7
  58. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/eegtcnet.py +3 -3
  59. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/fbcnet.py +1 -1
  60. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/fblightconvnet.py +2 -2
  61. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/fbmsnet.py +2 -2
  62. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/hybrid.py +1 -1
  63. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/ifnet.py +3 -3
  64. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/labram.py +31 -7
  65. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/luna.py +60 -5
  66. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/medformer.py +9 -7
  67. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/msvtnet.py +6 -6
  68. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/patchedtransformer.py +9 -9
  69. braindecode-1.3.1/braindecode/models/reve.py +843 -0
  70. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/sccnet.py +1 -1
  71. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/shallow_fbcsp.py +1 -1
  72. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/signal_jepa.py +39 -12
  73. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/sinc_shallow.py +2 -2
  74. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/sleep_stager_blanco_2020.py +1 -1
  75. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/sleep_stager_chambon_2018.py +1 -1
  76. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/sparcnet.py +4 -4
  77. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/sstdpn.py +869 -869
  78. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/summary.csv +19 -17
  79. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/syncnet.py +1 -1
  80. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/tcn.py +2 -2
  81. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/tidnet.py +2 -2
  82. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/tsinception.py +2 -2
  83. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/usleep.py +4 -4
  84. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/models/util.py +11 -0
  85. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/__init__.py +9 -1
  86. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/activation.py +29 -3
  87. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/attention.py +123 -0
  88. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/blocks.py +50 -0
  89. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/convolution.py +53 -0
  90. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/filter.py +31 -0
  91. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/layers.py +84 -0
  92. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/linear.py +22 -1
  93. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/stats.py +10 -0
  94. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/util.py +9 -0
  95. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/wrapper.py +17 -0
  96. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/preprocessing/preprocess.py +3 -0
  97. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/regressor.py +15 -18
  98. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/samplers/ssl.py +1 -1
  99. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/util.py +38 -28
  100. braindecode-1.3.1/braindecode/version.py +1 -0
  101. braindecode-1.3.1/braindecode.egg-info/PKG-INFO +230 -0
  102. braindecode-1.3.1/braindecode.egg-info/SOURCES.txt +675 -0
  103. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode.egg-info/requires.txt +16 -17
  104. braindecode-1.3.1/docs/_build/html/_downloads/090305d06248840b75133975e5121f41/plot_sleep_staging_chambon2018.ipynb +291 -0
  105. braindecode-1.3.1/docs/_build/html/_downloads/0ada35f18bb95235ba2842270483081f/plot_finetune_foundation_model.ipynb +237 -0
  106. braindecode-1.3.1/docs/_build/html/_downloads/0f2bf063e08b7d05b80e0004fcbbb6f9/benchmark_lazy_eager_loading.ipynb +183 -0
  107. braindecode-1.3.1/docs/_build/html/_downloads/137d0b161de96c88644fd65258fc20b5/tutorial_create_fixed_window_length.ipynb +190 -0
  108. braindecode-1.3.1/docs/_build/html/_downloads/1c6590d134fa0befda654e89aa55b2ac/plot_benchmark_preprocessing.ipynb +104 -0
  109. braindecode-1.3.1/docs/_build/html/_downloads/1d879df548fa18be8c23d9ca0dc008d4/plot_data_augmentation.ipynb +259 -0
  110. braindecode-1.3.1/docs/_build/html/_downloads/2466f8ec5c733d0bd65e187b45d875cc/plot_data_augmentation_search.ipynb +302 -0
  111. braindecode-1.3.1/docs/_build/html/_downloads/263464a28477cf8decb861ae6e2e9be7/plot_how_train_test_and_tune.ipynb +375 -0
  112. braindecode-1.3.1/docs/_build/html/_downloads/3862cafd7f0d815e434319ffe525afc8/plot_bcic_iv_2a_moabb_cropped.ipynb +226 -0
  113. braindecode-1.3.1/docs/_build/html/_downloads/408ca4ffd0ea1f76faa9ef602734ac94/plot_tuh_eeg_corpus.ipynb +187 -0
  114. braindecode-1.3.1/docs/_build/html/_downloads/5030717acb00990b394b83314b0797d9/plot_bids_dataset_example.ipynb +97 -0
  115. braindecode-1.3.1/docs/_build/html/_downloads/66ea18b3b9cf0802bbd32bb903ab554e/plot_temporal_generalization.ipynb +312 -0
  116. braindecode-1.3.1/docs/_build/html/_downloads/75a73c7d94f3a671fd3dec28f4031ead/plot_regression.ipynb +212 -0
  117. braindecode-1.3.1/docs/_build/html/_downloads/84fbcd59a346e5e56758285122dc69e2/plot_sleep_staging_eldele2021.ipynb +291 -0
  118. braindecode-1.3.1/docs/_build/html/_downloads/8616a7f968141825e56ab3e3d59be449/plot_tuh_discrete_multitarget.ipynb +169 -0
  119. braindecode-1.3.1/docs/_build/html/_downloads/8b5ba06718764b959e8dea1dd0bb97df/plot_sleep_staging_usleep.ipynb +255 -0
  120. braindecode-1.3.1/docs/_build/html/_downloads/91651c9d4fde110b4a53f5775a91acc5/plot_mne_dataset_example.ipynb +104 -0
  121. braindecode-1.3.1/docs/_build/html/_downloads/93fdea8cbadaf0e3afa2eb2be3ebc483/bcic_iv_4_ecog_trial.ipynb +376 -0
  122. braindecode-1.3.1/docs/_build/html/_downloads/9a4447462c3b255ba7e5ca212bbadd52/plot_bcic_iv_2a_moabb_trial.ipynb +271 -0
  123. braindecode-1.3.1/docs/_build/html/_downloads/9ecad1eb1db853df0ba20dbb97303c02/plot_exca_config.ipynb +439 -0
  124. braindecode-1.3.1/docs/_build/html/_downloads/a2f12129facb042643a99d4b9de1886d/bcic_iv_4_ecog_cropped.ipynb +345 -0
  125. braindecode-1.3.1/docs/_build/html/_downloads/a39e4245738e55e0eb7084c545ed05bc/plot_hyperparameter_tuning_with_scikit-learn.ipynb +257 -0
  126. braindecode-1.3.1/docs/_build/html/_downloads/a6249715d3c30cb41c4af85938cca008/plot_moabb_dataset_example.ipynb +140 -0
  127. braindecode-1.3.1/docs/_build/html/_downloads/a868f9d41de95f5f6defc26e291cf4aa/plot_preprocessing_classes.ipynb +194 -0
  128. braindecode-1.3.1/docs/_build/html/_downloads/a86d0c5f3a882a069df1683a708d3e25/plot_train_in_pure_pytorch_and_pytorch_lightning.ipynb +250 -0
  129. braindecode-1.3.1/docs/_build/html/_downloads/aa8426d97090e7b3062c4e4732c3214a/plot_relative_positioning.ipynb +266 -0
  130. braindecode-1.3.1/docs/_build/html/_downloads/b9d19304ecd233ea7a79d4365316ea49/plot_load_save_datasets.ipynb +176 -0
  131. braindecode-1.3.1/docs/_build/html/_downloads/cb62940d13f700ed2b9e813705e9d437/plot_moabb_benchmark.ipynb +122 -0
  132. braindecode-1.3.1/docs/_build/html/_downloads/cd24c95e5e6c988ebb6ece50ac672ab5/plot_bcic_iv_2a_eegprep_cleaning.ipynb +260 -0
  133. braindecode-1.3.1/docs/_build/html/_downloads/f158ead3e4720f6f4685ff1d3f48dc15/plot_hub_integration.ipynb +201 -0
  134. braindecode-1.3.1/docs/_build/html/_downloads/f3c89d39e947a121c7920b4d415413a2/plot_split_dataset.ipynb +180 -0
  135. braindecode-1.3.1/docs/_build/html/_downloads/f7b38cac92c078838442753121efc297/plot_custom_dataset_example.ipynb +140 -0
  136. braindecode-1.3.1/docs/_build/html/_downloads/fff46913db5173d3ae22c1113acffb45/plot_basic_training_epochs.ipynb +237 -0
  137. braindecode-1.3.1/docs/_templates/autosummary/class_in_subdir.rst +37 -0
  138. braindecode-1.3.1/docs/_templates/autosummary/function_in_subdir.rst +12 -0
  139. braindecode-1.3.1/docs/api.rst +798 -0
  140. braindecode-1.3.1/docs/auto_examples/advanced_training/bcic_iv_4_ecog_cropped.ipynb +345 -0
  141. braindecode-1.3.1/docs/auto_examples/advanced_training/bcic_iv_4_ecog_cropped.rst +626 -0
  142. braindecode-1.3.1/docs/auto_examples/advanced_training/index.rst +173 -0
  143. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_data_augmentation.ipynb +259 -0
  144. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_data_augmentation.rst +419 -0
  145. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_data_augmentation_search.ipynb +302 -0
  146. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_data_augmentation_search.rst +523 -0
  147. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_exca_config.ipynb +439 -0
  148. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_exca_config.rst +693 -0
  149. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_finetune_foundation_model.ipynb +237 -0
  150. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_finetune_foundation_model.rst +420 -0
  151. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_moabb_benchmark.ipynb +122 -0
  152. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_moabb_benchmark.rst +231 -0
  153. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_relative_positioning.ipynb +266 -0
  154. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_relative_positioning.rst +689 -0
  155. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_temporal_generalization.ipynb +312 -0
  156. braindecode-1.3.1/docs/auto_examples/advanced_training/plot_temporal_generalization.rst +807 -0
  157. braindecode-1.3.1/docs/auto_examples/advanced_training/sg_execution_times.rst +58 -0
  158. braindecode-1.3.1/docs/auto_examples/applied_examples/bcic_iv_4_ecog_trial.ipynb +376 -0
  159. braindecode-1.3.1/docs/auto_examples/applied_examples/bcic_iv_4_ecog_trial.rst +581 -0
  160. braindecode-1.3.1/docs/auto_examples/applied_examples/index.rst +137 -0
  161. braindecode-1.3.1/docs/auto_examples/applied_examples/plot_sleep_staging_chambon2018.ipynb +291 -0
  162. braindecode-1.3.1/docs/auto_examples/applied_examples/plot_sleep_staging_chambon2018.rst +521 -0
  163. braindecode-1.3.1/docs/auto_examples/applied_examples/plot_sleep_staging_eldele2021.ipynb +291 -0
  164. braindecode-1.3.1/docs/auto_examples/applied_examples/plot_sleep_staging_eldele2021.rst +519 -0
  165. braindecode-1.3.1/docs/auto_examples/applied_examples/plot_sleep_staging_usleep.ipynb +255 -0
  166. braindecode-1.3.1/docs/auto_examples/applied_examples/plot_sleep_staging_usleep.rst +468 -0
  167. braindecode-1.3.1/docs/auto_examples/applied_examples/plot_tuh_eeg_corpus.ipynb +187 -0
  168. braindecode-1.3.1/docs/auto_examples/applied_examples/plot_tuh_eeg_corpus.rst +433 -0
  169. braindecode-1.3.1/docs/auto_examples/applied_examples/sg_execution_times.rst +52 -0
  170. braindecode-1.3.1/docs/auto_examples/applied_examples/tutorial_create_fixed_window_length.ipynb +190 -0
  171. braindecode-1.3.1/docs/auto_examples/applied_examples/tutorial_create_fixed_window_length.rst +365 -0
  172. braindecode-1.3.1/docs/auto_examples/datasets_io/benchmark_lazy_eager_loading.ipynb +183 -0
  173. braindecode-1.3.1/docs/auto_examples/datasets_io/benchmark_lazy_eager_loading.rst +504 -0
  174. braindecode-1.3.1/docs/auto_examples/datasets_io/index.rst +209 -0
  175. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_benchmark_preprocessing.ipynb +104 -0
  176. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_benchmark_preprocessing.rst +257 -0
  177. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_bids_dataset_example.ipynb +97 -0
  178. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_bids_dataset_example.rst +110 -0
  179. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_custom_dataset_example.ipynb +140 -0
  180. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_custom_dataset_example.rst +163 -0
  181. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_hub_integration.ipynb +201 -0
  182. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_hub_integration.rst +483 -0
  183. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_load_save_datasets.ipynb +176 -0
  184. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_load_save_datasets.rst +202 -0
  185. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_mne_dataset_example.ipynb +104 -0
  186. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_mne_dataset_example.rst +135 -0
  187. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_moabb_dataset_example.ipynb +140 -0
  188. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_moabb_dataset_example.rst +156 -0
  189. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_split_dataset.ipynb +180 -0
  190. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_split_dataset.rst +223 -0
  191. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_tuh_discrete_multitarget.ipynb +169 -0
  192. braindecode-1.3.1/docs/auto_examples/datasets_io/plot_tuh_discrete_multitarget.rst +232 -0
  193. braindecode-1.3.1/docs/auto_examples/datasets_io/sg_execution_times.rst +64 -0
  194. braindecode-1.3.1/docs/auto_examples/index.rst +697 -0
  195. braindecode-1.3.1/docs/auto_examples/model_building/index.rst +191 -0
  196. braindecode-1.3.1/docs/auto_examples/model_building/plot_basic_training_epochs.ipynb +237 -0
  197. braindecode-1.3.1/docs/auto_examples/model_building/plot_basic_training_epochs.rst +320 -0
  198. braindecode-1.3.1/docs/auto_examples/model_building/plot_bcic_iv_2a_eegprep_cleaning.ipynb +260 -0
  199. braindecode-1.3.1/docs/auto_examples/model_building/plot_bcic_iv_2a_eegprep_cleaning.rst +538 -0
  200. braindecode-1.3.1/docs/auto_examples/model_building/plot_bcic_iv_2a_moabb_cropped.ipynb +226 -0
  201. braindecode-1.3.1/docs/auto_examples/model_building/plot_bcic_iv_2a_moabb_cropped.rst +513 -0
  202. braindecode-1.3.1/docs/auto_examples/model_building/plot_bcic_iv_2a_moabb_trial.ipynb +271 -0
  203. braindecode-1.3.1/docs/auto_examples/model_building/plot_bcic_iv_2a_moabb_trial.rst +482 -0
  204. braindecode-1.3.1/docs/auto_examples/model_building/plot_how_train_test_and_tune.ipynb +375 -0
  205. braindecode-1.3.1/docs/auto_examples/model_building/plot_how_train_test_and_tune.rst +854 -0
  206. braindecode-1.3.1/docs/auto_examples/model_building/plot_hyperparameter_tuning_with_scikit-learn.ipynb +257 -0
  207. braindecode-1.3.1/docs/auto_examples/model_building/plot_hyperparameter_tuning_with_scikit-learn.rst +498 -0
  208. braindecode-1.3.1/docs/auto_examples/model_building/plot_preprocessing_classes.ipynb +194 -0
  209. braindecode-1.3.1/docs/auto_examples/model_building/plot_preprocessing_classes.rst +324 -0
  210. braindecode-1.3.1/docs/auto_examples/model_building/plot_regression.ipynb +212 -0
  211. braindecode-1.3.1/docs/auto_examples/model_building/plot_regression.rst +391 -0
  212. braindecode-1.3.1/docs/auto_examples/model_building/plot_train_in_pure_pytorch_and_pytorch_lightning.ipynb +250 -0
  213. braindecode-1.3.1/docs/auto_examples/model_building/plot_train_in_pure_pytorch_and_pytorch_lightning.rst +536 -0
  214. braindecode-1.3.1/docs/auto_examples/model_building/sg_execution_times.rst +61 -0
  215. braindecode-1.3.1/docs/auto_examples/sg_execution_times.rst +37 -0
  216. braindecode-1.3.1/docs/cite.rst +72 -0
  217. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/docs/conf.py +20 -1
  218. braindecode-1.3.1/docs/generated/activation/braindecode.modules.LogActivation.rst +130 -0
  219. braindecode-1.3.1/docs/generated/activation/braindecode.modules.SafeLog.rst +135 -0
  220. braindecode-1.3.1/docs/generated/attention/braindecode.modules.CAT.rst +130 -0
  221. braindecode-1.3.1/docs/generated/attention/braindecode.modules.CATLite.rst +130 -0
  222. braindecode-1.3.1/docs/generated/attention/braindecode.modules.CBAM.rst +130 -0
  223. braindecode-1.3.1/docs/generated/attention/braindecode.modules.ECA.rst +130 -0
  224. braindecode-1.3.1/docs/generated/attention/braindecode.modules.EncNet.rst +130 -0
  225. braindecode-1.3.1/docs/generated/attention/braindecode.modules.FCA.rst +137 -0
  226. braindecode-1.3.1/docs/generated/attention/braindecode.modules.GCT.rst +130 -0
  227. braindecode-1.3.1/docs/generated/attention/braindecode.modules.GSoP.rst +130 -0
  228. braindecode-1.3.1/docs/generated/attention/braindecode.modules.GatherExcite.rst +130 -0
  229. braindecode-1.3.1/docs/generated/attention/braindecode.modules.MultiHeadAttention.rst +130 -0
  230. braindecode-1.3.1/docs/generated/attention/braindecode.modules.SRM.rst +130 -0
  231. braindecode-1.3.1/docs/generated/attention/braindecode.modules.SqueezeAndExcitation.rst +130 -0
  232. braindecode-1.3.1/docs/generated/blocks/braindecode.modules.FeedForwardBlock.rst +127 -0
  233. braindecode-1.3.1/docs/generated/blocks/braindecode.modules.InceptionBlock.rst +130 -0
  234. braindecode-1.3.1/docs/generated/blocks/braindecode.modules.MLP.rst +127 -0
  235. braindecode-1.3.1/docs/generated/braindecode.augmentation.AmplitudeScale.rst +139 -0
  236. braindecode-1.3.1/docs/generated/braindecode.augmentation.AugmentedDataLoader.rst +21 -0
  237. braindecode-1.3.1/docs/generated/braindecode.augmentation.BandstopFilter.rst +139 -0
  238. braindecode-1.3.1/docs/generated/braindecode.augmentation.ChannelsDropout.rst +139 -0
  239. braindecode-1.3.1/docs/generated/braindecode.augmentation.ChannelsReref.rst +139 -0
  240. braindecode-1.3.1/docs/generated/braindecode.augmentation.ChannelsShuffle.rst +139 -0
  241. braindecode-1.3.1/docs/generated/braindecode.augmentation.ChannelsSymmetry.rst +139 -0
  242. braindecode-1.3.1/docs/generated/braindecode.augmentation.Compose.rst +132 -0
  243. braindecode-1.3.1/docs/generated/braindecode.augmentation.FTSurrogate.rst +139 -0
  244. braindecode-1.3.1/docs/generated/braindecode.augmentation.FrequencyShift.rst +139 -0
  245. braindecode-1.3.1/docs/generated/braindecode.augmentation.GaussianNoise.rst +139 -0
  246. braindecode-1.3.1/docs/generated/braindecode.augmentation.IdentityTransform.rst +134 -0
  247. braindecode-1.3.1/docs/generated/braindecode.augmentation.MaskEncoding.rst +139 -0
  248. braindecode-1.3.1/docs/generated/braindecode.augmentation.Mixup.rst +139 -0
  249. braindecode-1.3.1/docs/generated/braindecode.augmentation.SegmentationReconstruction.rst +139 -0
  250. braindecode-1.3.1/docs/generated/braindecode.augmentation.SensorsRotation.rst +139 -0
  251. braindecode-1.3.1/docs/generated/braindecode.augmentation.SensorsXRotation.rst +123 -0
  252. braindecode-1.3.1/docs/generated/braindecode.augmentation.SensorsYRotation.rst +123 -0
  253. braindecode-1.3.1/docs/generated/braindecode.augmentation.SensorsZRotation.rst +123 -0
  254. braindecode-1.3.1/docs/generated/braindecode.augmentation.SignFlip.rst +134 -0
  255. braindecode-1.3.1/docs/generated/braindecode.augmentation.SmoothTimeMask.rst +139 -0
  256. braindecode-1.3.1/docs/generated/braindecode.augmentation.TimeReverse.rst +134 -0
  257. braindecode-1.3.1/docs/generated/braindecode.augmentation.Transform.rst +137 -0
  258. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.amplitude_scale.rst +12 -0
  259. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.bandstop_filter.rst +12 -0
  260. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.channels_dropout.rst +12 -0
  261. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.channels_permute.rst +12 -0
  262. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.channels_rereference.rst +12 -0
  263. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.channels_shuffle.rst +12 -0
  264. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.frequency_shift.rst +12 -0
  265. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.ft_surrogate.rst +12 -0
  266. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.gaussian_noise.rst +12 -0
  267. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.identity.rst +12 -0
  268. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.mask_encoding.rst +12 -0
  269. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.mixup.rst +12 -0
  270. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.segmentation_reconstruction.rst +12 -0
  271. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.sensors_rotation.rst +12 -0
  272. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.sign_flip.rst +12 -0
  273. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.smooth_time_mask.rst +12 -0
  274. braindecode-1.3.1/docs/generated/braindecode.augmentation.functional.time_reverse.rst +12 -0
  275. braindecode-1.3.1/docs/generated/braindecode.classifier.EEGClassifier.rst +166 -0
  276. braindecode-1.3.1/docs/generated/braindecode.datasets.BCICompetitionIVDataset4.rst +46 -0
  277. braindecode-1.3.1/docs/generated/braindecode.datasets.BNCI2014_001.rst +33 -0
  278. braindecode-1.3.1/docs/generated/braindecode.datasets.BaseConcatDataset.rst +59 -0
  279. braindecode-1.3.1/docs/generated/braindecode.datasets.CHBMIT.rst +33 -0
  280. braindecode-1.3.1/docs/generated/braindecode.datasets.HGD.rst +33 -0
  281. braindecode-1.3.1/docs/generated/braindecode.datasets.MOABBDataset.rst +33 -0
  282. braindecode-1.3.1/docs/generated/braindecode.datasets.NMT.rst +33 -0
  283. braindecode-1.3.1/docs/generated/braindecode.datasets.RawDataset.rst +21 -0
  284. braindecode-1.3.1/docs/generated/braindecode.datasets.RecordDataset.rst +32 -0
  285. braindecode-1.3.1/docs/generated/braindecode.datasets.SIENA.rst +33 -0
  286. braindecode-1.3.1/docs/generated/braindecode.datasets.SleepPhysionet.rst +33 -0
  287. braindecode-1.3.1/docs/generated/braindecode.datasets.SleepPhysionetChallenge2018.rst +33 -0
  288. braindecode-1.3.1/docs/generated/braindecode.datasets.TUH.rst +33 -0
  289. braindecode-1.3.1/docs/generated/braindecode.datasets.TUHAbnormal.rst +33 -0
  290. braindecode-1.3.1/docs/generated/braindecode.datasets.WindowsDataset.rst +21 -0
  291. braindecode-1.3.1/docs/generated/braindecode.datasets.bids.BIDSDataset.rst +33 -0
  292. braindecode-1.3.1/docs/generated/braindecode.datasets.bids.BIDSEpochsDataset.rst +33 -0
  293. braindecode-1.3.1/docs/generated/braindecode.datasets.bids.BIDSIterableDataset.rst +19 -0
  294. braindecode-1.3.1/docs/generated/braindecode.datasets.bids.HubDatasetMixin.rst +39 -0
  295. braindecode-1.3.1/docs/generated/braindecode.datasets.create_from_X_y.rst +12 -0
  296. braindecode-1.3.1/docs/generated/braindecode.datasets.create_from_mne_epochs.rst +12 -0
  297. braindecode-1.3.1/docs/generated/braindecode.datasets.create_from_mne_raw.rst +12 -0
  298. braindecode-1.3.1/docs/generated/braindecode.datautil.infer_signal_properties.rst +12 -0
  299. braindecode-1.3.1/docs/generated/braindecode.datautil.load_concat_dataset.rst +12 -0
  300. braindecode-1.3.1/docs/generated/braindecode.datautil.save_concat_dataset.rst +12 -0
  301. braindecode-1.3.1/docs/generated/braindecode.functional.drop_path.rst +12 -0
  302. braindecode-1.3.1/docs/generated/braindecode.functional.glorot_weight_zero_bias.rst +12 -0
  303. braindecode-1.3.1/docs/generated/braindecode.functional.hilbert_freq.rst +12 -0
  304. braindecode-1.3.1/docs/generated/braindecode.functional.identity.rst +12 -0
  305. braindecode-1.3.1/docs/generated/braindecode.functional.plv_time.rst +12 -0
  306. braindecode-1.3.1/docs/generated/braindecode.functional.rescale_parameter.rst +12 -0
  307. braindecode-1.3.1/docs/generated/braindecode.functional.safe_log.rst +12 -0
  308. braindecode-1.3.1/docs/generated/braindecode.functional.square.rst +12 -0
  309. braindecode-1.3.1/docs/generated/braindecode.models.ATCNet.rst +144 -0
  310. braindecode-1.3.1/docs/generated/braindecode.models.AttentionBaseNet.rst +144 -0
  311. braindecode-1.3.1/docs/generated/braindecode.models.AttnSleep.rst +144 -0
  312. braindecode-1.3.1/docs/generated/braindecode.models.BDTCN.rst +144 -0
  313. braindecode-1.3.1/docs/generated/braindecode.models.BENDR.rst +144 -0
  314. braindecode-1.3.1/docs/generated/braindecode.models.BIOT.rst +144 -0
  315. braindecode-1.3.1/docs/generated/braindecode.models.BrainModule.rst +144 -0
  316. braindecode-1.3.1/docs/generated/braindecode.models.CTNet.rst +144 -0
  317. braindecode-1.3.1/docs/generated/braindecode.models.ContraWR.rst +144 -0
  318. braindecode-1.3.1/docs/generated/braindecode.models.Deep4Net.rst +141 -0
  319. braindecode-1.3.1/docs/generated/braindecode.models.DeepSleepNet.rst +144 -0
  320. braindecode-1.3.1/docs/generated/braindecode.models.EEGConformer.rst +151 -0
  321. braindecode-1.3.1/docs/generated/braindecode.models.EEGITNet.rst +141 -0
  322. braindecode-1.3.1/docs/generated/braindecode.models.EEGInceptionERP.rst +141 -0
  323. braindecode-1.3.1/docs/generated/braindecode.models.EEGInceptionMI.rst +144 -0
  324. braindecode-1.3.1/docs/generated/braindecode.models.EEGMiner.rst +144 -0
  325. braindecode-1.3.1/docs/generated/braindecode.models.EEGModuleMixin.rst +61 -0
  326. braindecode-1.3.1/docs/generated/braindecode.models.EEGNeX.rst +144 -0
  327. braindecode-1.3.1/docs/generated/braindecode.models.EEGNet.rst +141 -0
  328. braindecode-1.3.1/docs/generated/braindecode.models.EEGSimpleConv.rst +144 -0
  329. braindecode-1.3.1/docs/generated/braindecode.models.EEGSym.rst +144 -0
  330. braindecode-1.3.1/docs/generated/braindecode.models.EEGTCNet.rst +144 -0
  331. braindecode-1.3.1/docs/generated/braindecode.models.FBCNet.rst +144 -0
  332. braindecode-1.3.1/docs/generated/braindecode.models.FBLightConvNet.rst +144 -0
  333. braindecode-1.3.1/docs/generated/braindecode.models.FBMSNet.rst +144 -0
  334. braindecode-1.3.1/docs/generated/braindecode.models.IFNet.rst +144 -0
  335. braindecode-1.3.1/docs/generated/braindecode.models.LUNA.rst +179 -0
  336. braindecode-1.3.1/docs/generated/braindecode.models.Labram.rst +179 -0
  337. braindecode-1.3.1/docs/generated/braindecode.models.MEDFormer.rst +144 -0
  338. braindecode-1.3.1/docs/generated/braindecode.models.MSVTNet.rst +144 -0
  339. braindecode-1.3.1/docs/generated/braindecode.models.PBT.rst +144 -0
  340. braindecode-1.3.1/docs/generated/braindecode.models.REVE.rst +151 -0
  341. braindecode-1.3.1/docs/generated/braindecode.models.SCCNet.rst +144 -0
  342. braindecode-1.3.1/docs/generated/braindecode.models.SPARCNet.rst +144 -0
  343. braindecode-1.3.1/docs/generated/braindecode.models.SSTDPN.rst +144 -0
  344. braindecode-1.3.1/docs/generated/braindecode.models.ShallowFBCSPNet.rst +141 -0
  345. braindecode-1.3.1/docs/generated/braindecode.models.SignalJEPA.rst +144 -0
  346. braindecode-1.3.1/docs/generated/braindecode.models.SignalJEPA_Contextual.rst +149 -0
  347. braindecode-1.3.1/docs/generated/braindecode.models.SignalJEPA_PostLocal.rst +149 -0
  348. braindecode-1.3.1/docs/generated/braindecode.models.SignalJEPA_PreLocal.rst +149 -0
  349. braindecode-1.3.1/docs/generated/braindecode.models.SincShallowNet.rst +144 -0
  350. braindecode-1.3.1/docs/generated/braindecode.models.SleepStagerBlanco2020.rst +144 -0
  351. braindecode-1.3.1/docs/generated/braindecode.models.SleepStagerChambon2018.rst +144 -0
  352. braindecode-1.3.1/docs/generated/braindecode.models.SyncNet.rst +144 -0
  353. braindecode-1.3.1/docs/generated/braindecode.models.TIDNet.rst +144 -0
  354. braindecode-1.3.1/docs/generated/braindecode.models.TSception.rst +144 -0
  355. braindecode-1.3.1/docs/generated/braindecode.models.USleep.rst +144 -0
  356. braindecode-1.3.1/docs/generated/braindecode.preprocessing.AddChannels.rst +25 -0
  357. braindecode-1.3.1/docs/generated/braindecode.preprocessing.AddEvents.rst +25 -0
  358. braindecode-1.3.1/docs/generated/braindecode.preprocessing.AddProj.rst +25 -0
  359. braindecode-1.3.1/docs/generated/braindecode.preprocessing.AddReferenceChannels.rst +25 -0
  360. braindecode-1.3.1/docs/generated/braindecode.preprocessing.AnnotateAmplitude.rst +38 -0
  361. braindecode-1.3.1/docs/generated/braindecode.preprocessing.AnnotateBreak.rst +38 -0
  362. braindecode-1.3.1/docs/generated/braindecode.preprocessing.AnnotateMovement.rst +38 -0
  363. braindecode-1.3.1/docs/generated/braindecode.preprocessing.AnnotateMuscleZscore.rst +38 -0
  364. braindecode-1.3.1/docs/generated/braindecode.preprocessing.AnnotateNan.rst +38 -0
  365. braindecode-1.3.1/docs/generated/braindecode.preprocessing.Anonymize.rst +25 -0
  366. braindecode-1.3.1/docs/generated/braindecode.preprocessing.ApplyGradientCompensation.rst +25 -0
  367. braindecode-1.3.1/docs/generated/braindecode.preprocessing.ApplyHilbert.rst +25 -0
  368. braindecode-1.3.1/docs/generated/braindecode.preprocessing.ApplyProj.rst +25 -0
  369. braindecode-1.3.1/docs/generated/braindecode.preprocessing.CombineChannels.rst +38 -0
  370. braindecode-1.3.1/docs/generated/braindecode.preprocessing.ComputeBridgedElectrodes.rst +38 -0
  371. braindecode-1.3.1/docs/generated/braindecode.preprocessing.ComputeCurrentSourceDensity.rst +38 -0
  372. braindecode-1.3.1/docs/generated/braindecode.preprocessing.Crop.rst +25 -0
  373. braindecode-1.3.1/docs/generated/braindecode.preprocessing.CropByAnnotations.rst +25 -0
  374. braindecode-1.3.1/docs/generated/braindecode.preprocessing.DelProj.rst +25 -0
  375. braindecode-1.3.1/docs/generated/braindecode.preprocessing.DropChannels.rst +25 -0
  376. braindecode-1.3.1/docs/generated/braindecode.preprocessing.EEGPrep.rst +38 -0
  377. braindecode-1.3.1/docs/generated/braindecode.preprocessing.EqualizeBads.rst +38 -0
  378. braindecode-1.3.1/docs/generated/braindecode.preprocessing.EqualizeChannels.rst +38 -0
  379. braindecode-1.3.1/docs/generated/braindecode.preprocessing.Filter.rst +25 -0
  380. braindecode-1.3.1/docs/generated/braindecode.preprocessing.FilterData.rst +38 -0
  381. braindecode-1.3.1/docs/generated/braindecode.preprocessing.FindBadChannelsLof.rst +38 -0
  382. braindecode-1.3.1/docs/generated/braindecode.preprocessing.FixMagCoilTypes.rst +25 -0
  383. braindecode-1.3.1/docs/generated/braindecode.preprocessing.FixStimArtifact.rst +38 -0
  384. braindecode-1.3.1/docs/generated/braindecode.preprocessing.InterpolateBads.rst +25 -0
  385. braindecode-1.3.1/docs/generated/braindecode.preprocessing.InterpolateBridgedElectrodes.rst +38 -0
  386. braindecode-1.3.1/docs/generated/braindecode.preprocessing.InterpolateTo.rst +25 -0
  387. braindecode-1.3.1/docs/generated/braindecode.preprocessing.MaxwellFilter.rst +38 -0
  388. braindecode-1.3.1/docs/generated/braindecode.preprocessing.NotchFilter.rst +25 -0
  389. braindecode-1.3.1/docs/generated/braindecode.preprocessing.OversampledTemporalProjection.rst +38 -0
  390. braindecode-1.3.1/docs/generated/braindecode.preprocessing.Pick.rst +25 -0
  391. braindecode-1.3.1/docs/generated/braindecode.preprocessing.PickChannels.rst +25 -0
  392. braindecode-1.3.1/docs/generated/braindecode.preprocessing.PickTypes.rst +25 -0
  393. braindecode-1.3.1/docs/generated/braindecode.preprocessing.Preprocessor.rst +46 -0
  394. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RealignRaw.rst +38 -0
  395. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RegressArtifact.rst +38 -0
  396. braindecode-1.3.1/docs/generated/braindecode.preprocessing.ReinterpolateRemovedChannels.rst +38 -0
  397. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RemoveBadChannels.rst +38 -0
  398. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RemoveBadChannelsNoLocs.rst +38 -0
  399. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RemoveBadWindows.rst +38 -0
  400. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RemoveBursts.rst +38 -0
  401. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RemoveCommonAverageReference.rst +38 -0
  402. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RemoveDCOffset.rst +38 -0
  403. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RemoveDrifts.rst +38 -0
  404. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RemoveFlatChannels.rst +38 -0
  405. braindecode-1.3.1/docs/generated/braindecode.preprocessing.RenameChannels.rst +25 -0
  406. braindecode-1.3.1/docs/generated/braindecode.preprocessing.ReorderChannels.rst +25 -0
  407. braindecode-1.3.1/docs/generated/braindecode.preprocessing.Resample.rst +25 -0
  408. braindecode-1.3.1/docs/generated/braindecode.preprocessing.Resampling.rst +38 -0
  409. braindecode-1.3.1/docs/generated/braindecode.preprocessing.Rescale.rst +25 -0
  410. braindecode-1.3.1/docs/generated/braindecode.preprocessing.SavgolFilter.rst +25 -0
  411. braindecode-1.3.1/docs/generated/braindecode.preprocessing.SetAnnotations.rst +25 -0
  412. braindecode-1.3.1/docs/generated/braindecode.preprocessing.SetBipolarReference.rst +38 -0
  413. braindecode-1.3.1/docs/generated/braindecode.preprocessing.SetChannelTypes.rst +25 -0
  414. braindecode-1.3.1/docs/generated/braindecode.preprocessing.SetEEGReference.rst +25 -0
  415. braindecode-1.3.1/docs/generated/braindecode.preprocessing.SetMeasDate.rst +25 -0
  416. braindecode-1.3.1/docs/generated/braindecode.preprocessing.SetMontage.rst +25 -0
  417. braindecode-1.3.1/docs/generated/braindecode.preprocessing.create_fixed_length_windows.rst +12 -0
  418. braindecode-1.3.1/docs/generated/braindecode.preprocessing.create_windows_from_events.rst +12 -0
  419. braindecode-1.3.1/docs/generated/braindecode.preprocessing.create_windows_from_target_channels.rst +12 -0
  420. braindecode-1.3.1/docs/generated/braindecode.preprocessing.exponential_moving_demean.rst +12 -0
  421. braindecode-1.3.1/docs/generated/braindecode.preprocessing.exponential_moving_standardize.rst +12 -0
  422. braindecode-1.3.1/docs/generated/braindecode.preprocessing.filterbank.rst +12 -0
  423. braindecode-1.3.1/docs/generated/braindecode.preprocessing.preprocess.rst +12 -0
  424. braindecode-1.3.1/docs/generated/braindecode.regressor.EEGRegressor.rst +161 -0
  425. braindecode-1.3.1/docs/generated/braindecode.samplers.BalancedSequenceSampler.rst +36 -0
  426. braindecode-1.3.1/docs/generated/braindecode.samplers.DistributedRecordingSampler.rst +41 -0
  427. braindecode-1.3.1/docs/generated/braindecode.samplers.DistributedRelativePositioningSampler.rst +38 -0
  428. braindecode-1.3.1/docs/generated/braindecode.samplers.RecordingSampler.rst +39 -0
  429. braindecode-1.3.1/docs/generated/braindecode.samplers.RelativePositioningSampler.rst +36 -0
  430. braindecode-1.3.1/docs/generated/braindecode.samplers.SequenceSampler.rst +23 -0
  431. braindecode-1.3.1/docs/generated/braindecode.training.CroppedLoss.rst +130 -0
  432. braindecode-1.3.1/docs/generated/braindecode.training.CroppedTimeSeriesEpochScoring.rst +52 -0
  433. braindecode-1.3.1/docs/generated/braindecode.training.CroppedTrialEpochScoring.rst +57 -0
  434. braindecode-1.3.1/docs/generated/braindecode.training.PostEpochTrainScoring.rst +52 -0
  435. braindecode-1.3.1/docs/generated/braindecode.training.TimeSeriesLoss.rst +130 -0
  436. braindecode-1.3.1/docs/generated/braindecode.training.mixup_criterion.rst +12 -0
  437. braindecode-1.3.1/docs/generated/braindecode.training.predict_trials.rst +12 -0
  438. braindecode-1.3.1/docs/generated/braindecode.training.trial_preds_from_window_preds.rst +12 -0
  439. braindecode-1.3.1/docs/generated/braindecode.util.set_random_seeds.rst +12 -0
  440. braindecode-1.3.1/docs/generated/braindecode.visualization.compute_amplitude_gradients.rst +12 -0
  441. braindecode-1.3.1/docs/generated/braindecode.visualization.plot_confusion_matrix.rst +12 -0
  442. braindecode-1.3.1/docs/generated/convolution/braindecode.modules.AvgPool2dWithConv.rst +130 -0
  443. braindecode-1.3.1/docs/generated/convolution/braindecode.modules.CausalConv1d.rst +132 -0
  444. braindecode-1.3.1/docs/generated/convolution/braindecode.modules.CombinedConv.rst +130 -0
  445. braindecode-1.3.1/docs/generated/convolution/braindecode.modules.Conv2dWithConstraint.rst +121 -0
  446. braindecode-1.3.1/docs/generated/convolution/braindecode.modules.DepthwiseConv2d.rst +121 -0
  447. braindecode-1.3.1/docs/generated/filter/braindecode.modules.FilterBankLayer.rst +130 -0
  448. braindecode-1.3.1/docs/generated/filter/braindecode.modules.GeneralizedGaussianFilter.rst +144 -0
  449. braindecode-1.3.1/docs/generated/layers/braindecode.modules.Chomp1d.rst +135 -0
  450. braindecode-1.3.1/docs/generated/layers/braindecode.modules.DropPath.rst +135 -0
  451. braindecode-1.3.1/docs/generated/layers/braindecode.modules.Ensure4d.rst +130 -0
  452. braindecode-1.3.1/docs/generated/layers/braindecode.modules.SubjectLayers.rst +130 -0
  453. braindecode-1.3.1/docs/generated/layers/braindecode.modules.TimeDistributed.rst +130 -0
  454. braindecode-1.3.1/docs/generated/linear/braindecode.modules.LinearWithConstraint.rst +121 -0
  455. braindecode-1.3.1/docs/generated/linear/braindecode.modules.MaxNormLinear.rst +121 -0
  456. braindecode-1.3.1/docs/generated/stats/braindecode.modules.LogPowerLayer.rst +6 -0
  457. braindecode-1.3.1/docs/generated/stats/braindecode.modules.LogVarLayer.rst +6 -0
  458. braindecode-1.3.1/docs/generated/stats/braindecode.modules.MaxLayer.rst +6 -0
  459. braindecode-1.3.1/docs/generated/stats/braindecode.modules.MeanLayer.rst +6 -0
  460. braindecode-1.3.1/docs/generated/stats/braindecode.modules.StatLayer.rst +130 -0
  461. braindecode-1.3.1/docs/generated/stats/braindecode.modules.StdLayer.rst +6 -0
  462. braindecode-1.3.1/docs/generated/stats/braindecode.modules.VarLayer.rst +6 -0
  463. braindecode-1.3.1/docs/generated/util/braindecode.modules.aggregate_probas.rst +12 -0
  464. braindecode-1.3.1/docs/generated/wrapper/braindecode.modules.Expression.rst +130 -0
  465. braindecode-1.3.1/docs/generated/wrapper/braindecode.modules.IntermediateOutputWrapper.rst +130 -0
  466. braindecode-1.3.1/docs/help.rst +62 -0
  467. braindecode-1.3.1/docs/index.rst +48 -0
  468. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/docs/install/install.rst +5 -6
  469. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/docs/install/install_pip.rst +16 -10
  470. braindecode-1.3.1/docs/install/install_source.rst +78 -0
  471. braindecode-1.3.1/docs/moabb/docs/Makefile +43 -0
  472. braindecode-1.3.1/docs/moabb/docs/source/_templates/class.rst +14 -0
  473. braindecode-1.3.1/docs/moabb/docs/source/_templates/function.rst +12 -0
  474. braindecode-1.3.1/docs/moabb/docs/source/api.rst +419 -0
  475. braindecode-1.3.1/docs/moabb/docs/source/cite.rst +70 -0
  476. braindecode-1.3.1/docs/moabb/docs/source/conf.py +531 -0
  477. braindecode-1.3.1/docs/moabb/docs/source/dataset_summary.rst +180 -0
  478. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.meta_analysis.collapse_session_scores.rst +6 -0
  479. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.meta_analysis.combine_effects.rst +6 -0
  480. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.meta_analysis.combine_pvalues.rst +6 -0
  481. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.meta_analysis.compute_dataset_statistics.rst +6 -0
  482. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.meta_analysis.find_significant_differences.rst +6 -0
  483. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.plotting.dataset_bubble_plot.rst +6 -0
  484. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.plotting.meta_analysis_plot.rst +6 -0
  485. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.plotting.paired_plot.rst +6 -0
  486. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.plotting.score_plot.rst +6 -0
  487. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.analysis.plotting.summary_plot.rst +6 -0
  488. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.benchmark.rst +6 -0
  489. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.AlexMI.rst +6 -0
  490. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BI2012.rst +6 -0
  491. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BI2013a.rst +6 -0
  492. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BI2014a.rst +6 -0
  493. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BI2014b.rst +6 -0
  494. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BI2015a.rst +6 -0
  495. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BI2015b.rst +6 -0
  496. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BNCI2014_001.rst +6 -0
  497. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BNCI2014_002.rst +6 -0
  498. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BNCI2014_004.rst +6 -0
  499. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BNCI2014_008.rst +6 -0
  500. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BNCI2014_009.rst +6 -0
  501. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BNCI2015_001.rst +6 -0
  502. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BNCI2015_003.rst +6 -0
  503. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.BNCI2015_004.rst +6 -0
  504. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Beetl2021_A.rst +6 -0
  505. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Beetl2021_B.rst +6 -0
  506. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.CastillosBurstVEP100.rst +6 -0
  507. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.CastillosBurstVEP40.rst +6 -0
  508. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.CastillosCVEP100.rst +6 -0
  509. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.CastillosCVEP40.rst +6 -0
  510. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Cattan2019_PHMD.rst +6 -0
  511. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Cattan2019_VR.rst +6 -0
  512. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Cho2017.rst +6 -0
  513. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.DemonsP300.rst +6 -0
  514. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Dreyer2023.rst +6 -0
  515. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Dreyer2023A.rst +6 -0
  516. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Dreyer2023B.rst +6 -0
  517. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Dreyer2023C.rst +6 -0
  518. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.EPFLP300.rst +6 -0
  519. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.ErpCore2021_ERN.rst +6 -0
  520. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.ErpCore2021_LRP.rst +6 -0
  521. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.ErpCore2021_MMN.rst +6 -0
  522. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.ErpCore2021_N170.rst +6 -0
  523. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.ErpCore2021_N2pc.rst +6 -0
  524. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.ErpCore2021_N400.rst +6 -0
  525. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.ErpCore2021_P3.rst +6 -0
  526. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.GrosseWentrup2009.rst +6 -0
  527. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Hinss2021.rst +6 -0
  528. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Huebner2017.rst +6 -0
  529. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Huebner2018.rst +6 -0
  530. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Kalunga2016.rst +6 -0
  531. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Kojima2024A.rst +6 -0
  532. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Kojima2024B.rst +6 -0
  533. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Lee2019_ERP.rst +6 -0
  534. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Lee2019_MI.rst +6 -0
  535. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Lee2019_SSVEP.rst +6 -0
  536. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Liu2024.rst +6 -0
  537. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.MAMEM1.rst +6 -0
  538. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.MAMEM2.rst +6 -0
  539. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.MAMEM3.rst +6 -0
  540. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Nakanishi2015.rst +6 -0
  541. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Ofner2017.rst +6 -0
  542. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.PhysionetMI.rst +6 -0
  543. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Rodrigues2017.rst +6 -0
  544. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.RomaniBF2025ERP.rst +6 -0
  545. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Schirrmeister2017.rst +6 -0
  546. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Shin2017A.rst +6 -0
  547. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Shin2017B.rst +6 -0
  548. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Sosulski2019.rst +6 -0
  549. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Stieger2021.rst +6 -0
  550. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Thielen2015.rst +6 -0
  551. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Thielen2021.rst +6 -0
  552. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Wang2016.rst +6 -0
  553. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Weibo2014.rst +6 -0
  554. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.Zhou2016.rst +6 -0
  555. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.base.BaseBIDSDataset.rst +6 -0
  556. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.base.BaseDataset.rst +6 -0
  557. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.base.CacheConfig.rst +6 -0
  558. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.base.LocalBIDSDataset.rst +6 -0
  559. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.compound_dataset.BI2014a_Il.rst +6 -0
  560. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.compound_dataset.BI2014b_Il.rst +6 -0
  561. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.compound_dataset.BI2015a_Il.rst +6 -0
  562. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.compound_dataset.BI2015b_Il.rst +6 -0
  563. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.compound_dataset.BI_Il.rst +6 -0
  564. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.compound_dataset.Cattan2019_VR_Il.rst +6 -0
  565. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.download.data_dl.rst +6 -0
  566. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.download.data_path.rst +6 -0
  567. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.download.fs_get_file_hash.rst +6 -0
  568. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.download.fs_get_file_id.rst +6 -0
  569. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.download.fs_get_file_list.rst +6 -0
  570. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.download.fs_get_file_name.rst +6 -0
  571. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.download.fs_issue_request.rst +6 -0
  572. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.fake.FakeDataset.rst +6 -0
  573. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.fake.FakeVirtualRealityDataset.rst +6 -0
  574. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.utils.dataset_search.rst +6 -0
  575. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.utils.find_intersecting_channels.rst +6 -0
  576. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.utils.plot_datasets_cluster.rst +6 -0
  577. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.datasets.utils.plot_datasets_grid.rst +6 -0
  578. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.evaluations.CrossSessionEvaluation.rst +6 -0
  579. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.evaluations.CrossSessionSplitter.rst +6 -0
  580. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.evaluations.CrossSubjectEvaluation.rst +6 -0
  581. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.evaluations.CrossSubjectSplitter.rst +6 -0
  582. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.evaluations.WithinSessionEvaluation.rst +6 -0
  583. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.evaluations.WithinSessionSplitter.rst +6 -0
  584. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.evaluations.base.BaseEvaluation.rst +6 -0
  585. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.make_process_pipelines.rst +6 -0
  586. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.BaseFixedIntervalWindowsProcessing.rst +6 -0
  587. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.CVEP.rst +6 -0
  588. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.FilterBankCVEP.rst +6 -0
  589. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.FilterBankFixedIntervalWindowsProcessing.rst +6 -0
  590. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.FilterBankLeftRightImagery.rst +6 -0
  591. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.FilterBankMotorImagery.rst +6 -0
  592. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.FilterBankSSVEP.rst +6 -0
  593. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.FixedIntervalWindowsProcessing.rst +6 -0
  594. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.LeftRightImagery.rst +6 -0
  595. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.MotorImagery.rst +6 -0
  596. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.P300.rst +6 -0
  597. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.RestingStateToP300Adapter.rst +6 -0
  598. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.SSVEP.rst +6 -0
  599. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.SinglePass.rst +6 -0
  600. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.base.BaseParadigm.rst +6 -0
  601. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.base.BaseProcessing.rst +6 -0
  602. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.motor_imagery.BaseMotorImagery.rst +6 -0
  603. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.motor_imagery.FilterBank.rst +6 -0
  604. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.motor_imagery.SinglePass.rst +6 -0
  605. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.p300.BaseP300.rst +6 -0
  606. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.paradigms.ssvep.BaseSSVEP.rst +6 -0
  607. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.pipelines.classification.SSVEP_CCA.rst +6 -0
  608. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.pipelines.classification.SSVEP_MsetCCA.rst +6 -0
  609. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.pipelines.classification.SSVEP_TRCA.rst +6 -0
  610. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.pipelines.csp.TRCSP.rst +6 -0
  611. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.pipelines.features.AugmentedDataset.rst +6 -0
  612. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.pipelines.features.ExtendedSSVEPSignal.rst +6 -0
  613. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.pipelines.features.FM.rst +6 -0
  614. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.pipelines.features.LogVariance.rst +6 -0
  615. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.pipelines.features.StandardScaler_Epoch.rst +6 -0
  616. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.set_download_dir.rst +6 -0
  617. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.set_log_level.rst +6 -0
  618. braindecode-1.3.1/docs/moabb/docs/source/generated/moabb.setup_seed.rst +6 -0
  619. braindecode-1.3.1/docs/moabb/docs/source/index.rst +47 -0
  620. braindecode-1.3.1/docs/moabb/docs/source/install/install.rst +79 -0
  621. braindecode-1.3.1/docs/moabb/docs/source/install/install_pip.rst +28 -0
  622. braindecode-1.3.1/docs/moabb/docs/source/install/install_source.rst +89 -0
  623. braindecode-1.3.1/docs/moabb/docs/source/paper_results.rst +158 -0
  624. braindecode-1.3.1/docs/moabb/docs/source/whats_new.rst +681 -0
  625. braindecode-1.3.1/docs/moabb/examples/advanced_examples/readme.rst +13 -0
  626. braindecode-1.3.1/docs/moabb/examples/data_management_and_configuration/readme.rst +7 -0
  627. braindecode-1.3.1/docs/moabb/examples/how_to_benchmark/readme.rst +10 -0
  628. braindecode-1.3.1/docs/moabb/examples/learning_curve/readme.rst +13 -0
  629. braindecode-1.3.1/docs/moabb/examples/paradigm_examples/readme.rst +9 -0
  630. braindecode-1.3.1/docs/moabb/examples/readme.rst +16 -0
  631. braindecode-1.3.1/docs/moabb/examples/tutorials/readme.rst +9 -0
  632. braindecode-1.3.1/docs/models/categorization/attention.rst +35 -0
  633. braindecode-1.3.1/docs/models/categorization/channel.rst +36 -0
  634. braindecode-1.3.1/docs/models/categorization/convolution.rst +42 -0
  635. braindecode-1.3.1/docs/models/categorization/filterbank.rst +35 -0
  636. braindecode-1.3.1/docs/models/categorization/gnn.rst +27 -0
  637. braindecode-1.3.1/docs/models/categorization/interpretable.rst +35 -0
  638. braindecode-1.3.1/docs/models/categorization/lbm.rst +35 -0
  639. braindecode-1.3.1/docs/models/categorization/recurrent.rst +35 -0
  640. braindecode-1.3.1/docs/models/categorization/spd.rst +35 -0
  641. braindecode-1.3.1/docs/models/models.rst +89 -0
  642. braindecode-1.3.1/docs/models/models_categorization.rst +244 -0
  643. braindecode-1.3.1/docs/models/models_table.rst +209 -0
  644. braindecode-1.3.1/docs/models/models_visualization.rst +33 -0
  645. braindecode-1.3.1/docs/sg_execution_times.rst +110 -0
  646. braindecode-1.3.1/docs/whats_new.rst +788 -0
  647. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/pyproject.toml +23 -24
  648. braindecode-1.3.0.dev175435903/PKG-INFO +0 -206
  649. braindecode-1.3.0.dev175435903/README.rst +0 -122
  650. braindecode-1.3.0.dev175435903/braindecode/datautil/util.py +0 -41
  651. braindecode-1.3.0.dev175435903/braindecode/version.py +0 -1
  652. braindecode-1.3.0.dev175435903/braindecode.egg-info/PKG-INFO +0 -206
  653. braindecode-1.3.0.dev175435903/braindecode.egg-info/SOURCES.txt +0 -146
  654. braindecode-1.3.0.dev175435903/docs/api.rst +0 -698
  655. braindecode-1.3.0.dev175435903/docs/cite.rst +0 -65
  656. braindecode-1.3.0.dev175435903/docs/help.rst +0 -62
  657. braindecode-1.3.0.dev175435903/docs/index.rst +0 -50
  658. braindecode-1.3.0.dev175435903/docs/install/install_source.rst +0 -71
  659. braindecode-1.3.0.dev175435903/docs/models/categorization/attention.rst +0 -31
  660. braindecode-1.3.0.dev175435903/docs/models/categorization/channel.rst +0 -31
  661. braindecode-1.3.0.dev175435903/docs/models/categorization/convolution.rst +0 -33
  662. braindecode-1.3.0.dev175435903/docs/models/categorization/filterbank.rst +0 -31
  663. braindecode-1.3.0.dev175435903/docs/models/categorization/gnn.rst +0 -27
  664. braindecode-1.3.0.dev175435903/docs/models/categorization/interpretable.rst +0 -31
  665. braindecode-1.3.0.dev175435903/docs/models/categorization/lbm.rst +0 -31
  666. braindecode-1.3.0.dev175435903/docs/models/categorization/recurrent.rst +0 -31
  667. braindecode-1.3.0.dev175435903/docs/models/categorization/spd.rst +0 -31
  668. braindecode-1.3.0.dev175435903/docs/models/models.rst +0 -78
  669. braindecode-1.3.0.dev175435903/docs/models/models_categorization.rst +0 -201
  670. braindecode-1.3.0.dev175435903/docs/models/models_table.rst +0 -191
  671. braindecode-1.3.0.dev175435903/docs/models/models_visualization.rst +0 -31
  672. braindecode-1.3.0.dev175435903/docs/sg_execution_times.rst +0 -112
  673. braindecode-1.3.0.dev175435903/docs/whats_new.rst +0 -438
  674. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/LICENSE.txt +0 -0
  675. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/MANIFEST.in +0 -0
  676. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/NOTICE.txt +0 -0
  677. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/__init__.py +0 -0
  678. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datasets/registry.py +0 -0
  679. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datautil/channel_utils.py +0 -0
  680. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/datautil/hub_formats.py +0 -0
  681. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/functional/__init__.py +0 -0
  682. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/modules/parametrization.py +0 -0
  683. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/preprocessing/__init__.py +0 -0
  684. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/preprocessing/eegprep_preprocess.py +0 -0
  685. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/preprocessing/mne_preprocess.py +0 -0
  686. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/preprocessing/util.py +0 -0
  687. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/preprocessing/windowers.py +0 -0
  688. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/samplers/__init__.py +0 -0
  689. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/samplers/base.py +0 -0
  690. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/training/__init__.py +0 -0
  691. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/training/callbacks.py +0 -0
  692. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/training/losses.py +0 -0
  693. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/training/scoring.py +0 -0
  694. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/visualization/__init__.py +0 -0
  695. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/visualization/confusion_matrices.py +0 -0
  696. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode/visualization/gradients.py +0 -0
  697. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode.egg-info/dependency_links.txt +0 -0
  698. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/braindecode.egg-info/top_level.txt +0 -0
  699. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/docs/Makefile +0 -0
  700. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/docs/_templates/autosummary/class.rst +0 -0
  701. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/docs/_templates/autosummary/function.rst +0 -0
  702. {braindecode-1.3.0.dev175435903 → braindecode-1.3.1}/setup.cfg +0 -0
@@ -0,0 +1,230 @@
1
+ Metadata-Version: 2.4
2
+ Name: braindecode
3
+ Version: 1.3.1
4
+ Summary: Deep learning software to decode EEG, ECG or MEG signals
5
+ Author-email: Robin Tibor Schirrmeister <robintibor@gmail.com>, Bruno Aristimunha Pinto <b.aristimunha@gmail.com>, Alexandre Gramfort <agramfort@meta.com>
6
+ Maintainer-email: Alexandre Gramfort <agramfort@meta.com>, Bruno Aristimunha Pinto <b.aristimunha@gmail.com>, Robin Tibor Schirrmeister <robintibor@gmail.com>
7
+ License: BSD-3-Clause
8
+ Project-URL: homepage, https://braindecode.org
9
+ Project-URL: repository, https://github.com/braindecode/braindecode
10
+ Project-URL: documentation, https://braindecode.org/stable/index.html
11
+ Keywords: python,deep-learning,neuroscience,pytorch,meg,eeg,neuroimaging,electroencephalography,magnetoencephalography,electrocorticography,ecog,electroencephalogram
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Science/Research
15
+ Classifier: Topic :: Software Development :: Build Tools
16
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Requires-Python: >=3.11
22
+ Description-Content-Type: text/x-rst
23
+ License-File: LICENSE.txt
24
+ License-File: NOTICE.txt
25
+ Requires-Dist: torch>=2.2
26
+ Requires-Dist: torchaudio>=2.0
27
+ Requires-Dist: mne>=1.11.0
28
+ Requires-Dist: mne_bids>=0.18
29
+ Requires-Dist: h5py
30
+ Requires-Dist: skorch>=1.3.0
31
+ Requires-Dist: joblib
32
+ Requires-Dist: torchinfo
33
+ Requires-Dist: wfdb
34
+ Requires-Dist: linear_attention_transformer
35
+ Requires-Dist: docstring_inheritance
36
+ Requires-Dist: rotary_embedding_torch
37
+ Provides-Extra: moabb
38
+ Requires-Dist: moabb>=1.4.3; extra == "moabb"
39
+ Provides-Extra: eegprep
40
+ Requires-Dist: eegprep[eeglabio]>=0.2.23; extra == "eegprep"
41
+ Provides-Extra: hub
42
+ Requires-Dist: huggingface_hub[torch]>=0.20.0; extra == "hub"
43
+ Requires-Dist: zarr>=3.0; extra == "hub"
44
+ Provides-Extra: tests
45
+ Requires-Dist: pytest; extra == "tests"
46
+ Requires-Dist: pytest-cov; extra == "tests"
47
+ Requires-Dist: codecov; extra == "tests"
48
+ Requires-Dist: pytest_cases; extra == "tests"
49
+ Requires-Dist: mypy; extra == "tests"
50
+ Requires-Dist: transformers>=4.57.0; extra == "tests"
51
+ Requires-Dist: bids_validator; extra == "tests"
52
+ Provides-Extra: typing
53
+ Requires-Dist: exca==0.4; extra == "typing"
54
+ Requires-Dist: numpydantic>=1.7; extra == "typing"
55
+ Provides-Extra: docs
56
+ Requires-Dist: sphinx_gallery; extra == "docs"
57
+ Requires-Dist: sphinx_rtd_theme; extra == "docs"
58
+ Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
59
+ Requires-Dist: sphinx-autobuild; extra == "docs"
60
+ Requires-Dist: sphinxcontrib-bibtex; extra == "docs"
61
+ Requires-Dist: sphinx_sitemap; extra == "docs"
62
+ Requires-Dist: pydata_sphinx_theme; extra == "docs"
63
+ Requires-Dist: numpydoc; extra == "docs"
64
+ Requires-Dist: memory_profiler; extra == "docs"
65
+ Requires-Dist: pillow; extra == "docs"
66
+ Requires-Dist: ipython; extra == "docs"
67
+ Requires-Dist: sphinx_design; extra == "docs"
68
+ Requires-Dist: lightning; extra == "docs"
69
+ Requires-Dist: seaborn; extra == "docs"
70
+ Requires-Dist: pre-commit; extra == "docs"
71
+ Requires-Dist: openneuro-py; extra == "docs"
72
+ Requires-Dist: plotly; extra == "docs"
73
+ Requires-Dist: shap; extra == "docs"
74
+ Requires-Dist: nbformat; extra == "docs"
75
+ Requires-Dist: transformers; extra == "docs"
76
+ Provides-Extra: all
77
+ Requires-Dist: braindecode[moabb]; extra == "all"
78
+ Requires-Dist: braindecode[tests]; extra == "all"
79
+ Requires-Dist: braindecode[docs]; extra == "all"
80
+ Requires-Dist: braindecode[hub]; extra == "all"
81
+ Requires-Dist: braindecode[eegprep]; extra == "all"
82
+ Requires-Dist: braindecode[typing]; extra == "all"
83
+ Dynamic: license-file
84
+
85
+ .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.8214376.svg
86
+ :target: https://doi.org/10.5281/zenodo.8214376
87
+ :alt: DOI
88
+
89
+ .. image:: https://github.com/braindecode/braindecode/workflows/docs/badge.svg
90
+ :target: https://github.com/braindecode/braindecode/actions/workflows/docs.yml
91
+ :alt: Docs Build Status
92
+
93
+ .. image:: https://github.com/braindecode/braindecode/workflows/tests/badge.svg
94
+ :target: https://github.com/braindecode/braindecode/actions/workflows/tests.yml
95
+ :alt: Test Build Status
96
+
97
+ .. image:: https://codecov.io/gh/braindecode/braindecode/branch/master/graph/badge.svg
98
+ :target: https://codecov.io/gh/braindecode/braindecode
99
+ :alt: Code Coverage
100
+
101
+ .. image:: https://img.shields.io/pypi/v/braindecode?color=blue&style=flat-square
102
+ :target: https://pypi.org/project/braindecode/
103
+ :alt: PyPI
104
+
105
+ .. image:: https://img.shields.io/pypi/v/braindecode?label=version&color=orange&style=flat-square
106
+ :target: https://pypi.org/project/braindecode/
107
+ :alt: Version
108
+
109
+ .. image:: https://img.shields.io/pypi/pyversions/braindecode?style=flat-square
110
+ :target: https://pypi.org/project/braindecode/
111
+ :alt: Python versions
112
+
113
+ .. image:: https://pepy.tech/badge/braindecode
114
+ :target: https://pepy.tech/project/braindecode
115
+ :alt: Downloads
116
+
117
+ .. |Braindecode| image:: https://user-images.githubusercontent.com/42702466/177958779-b00628aa-9155-4c51-96d1-d8c345aff575.svg
118
+
119
+ .. _braindecode: braindecode.org/
120
+
121
+ #############
122
+ Braindecode
123
+ #############
124
+
125
+ Braindecode is an open-source Python toolbox for decoding raw electrophysiological brain
126
+ data with deep learning models. It includes dataset fetchers, data preprocessing and
127
+ visualization tools, as well as implementations of several deep learning architectures
128
+ and data augmentations for analysis of EEG, ECoG and MEG.
129
+
130
+ For neuroscientists who want to work with deep learning and deep learning researchers
131
+ who want to work with neurophysiological data.
132
+
133
+ ##########################
134
+ Installation Braindecode
135
+ ##########################
136
+
137
+ 1. Install pytorch from http://pytorch.org/ (you don't need to install torchvision).
138
+ 2. If you want to download EEG datasets from `MOABB
139
+ <https://github.com/NeuroTechX/moabb>`_, install it:
140
+
141
+ .. code-block:: bash
142
+
143
+ pip install moabb
144
+
145
+ 3. Install latest release of braindecode via pip:
146
+
147
+ .. code-block:: bash
148
+
149
+ pip install braindecode
150
+
151
+ If you want to install the latest development version of braindecode, please refer to
152
+ `contributing page
153
+ <https://github.com/braindecode/braindecode/blob/master/CONTRIBUTING.md>`__
154
+
155
+ ###############
156
+ Documentation
157
+ ###############
158
+
159
+ Documentation is online under https://braindecode.org, both in the stable and dev
160
+ versions.
161
+
162
+ #############################
163
+ Contributing to Braindecode
164
+ #############################
165
+
166
+ Guidelines for contributing to the library can be found on the braindecode github:
167
+
168
+ https://github.com/braindecode/braindecode/blob/master/CONTRIBUTING.md
169
+
170
+ ########
171
+ Citing
172
+ ########
173
+
174
+ If you use Braindecode in scientific work, please cite the software using the Zenodo DOI
175
+ shown in the badge below:
176
+
177
+ .. image:: https://zenodo.org/badge/232335424.svg
178
+ :target: https://doi.org/10.5281/zenodo.8214376
179
+ :alt: DOI
180
+
181
+ Additionally, we highly encourage you to cite the article that originally introduced the
182
+ Braindecode library and has served as a foundational reference for many works on deep
183
+ learning with EEG recordings. Please use the following reference:
184
+
185
+ .. code-block:: bibtex
186
+
187
+ @article {HBM:HBM23730,
188
+ author = {Schirrmeister, Robin Tibor and Springenberg, Jost Tobias and Fiederer,
189
+ Lukas Dominique Josef and Glasstetter, Martin and Eggensperger, Katharina and Tangermann, Michael and
190
+ Hutter, Frank and Burgard, Wolfram and Ball, Tonio},
191
+ title = {Deep learning with convolutional neural networks for EEG decoding and visualization},
192
+ journal = {Human Brain Mapping},
193
+ issn = {1097-0193},
194
+ url = {http://dx.doi.org/10.1002/hbm.23730},
195
+ doi = {10.1002/hbm.23730},
196
+ month = {aug},
197
+ year = {2017},
198
+ keywords = {electroencephalography, EEG analysis, machine learning, end-to-end learning, brain–machine interface,
199
+ brain–computer interface, model interpretability, brain mapping},
200
+ }
201
+
202
+ as well as the `MNE-Python <https://mne.tools>`_ software that is used by braindecode:
203
+
204
+ .. code-block:: bibtex
205
+
206
+ @article{10.3389/fnins.2013.00267,
207
+ author={Gramfort, Alexandre and Luessi, Martin and Larson, Eric and Engemann, Denis and Strohmeier, Daniel and Brodbeck, Christian and Goj, Roman and Jas, Mainak and Brooks, Teon and Parkkonen, Lauri and Hämäläinen, Matti},
208
+ title={{MEG and EEG data analysis with MNE-Python}},
209
+ journal={Frontiers in Neuroscience},
210
+ volume={7},
211
+ pages={267},
212
+ year={2013},
213
+ url={https://www.frontiersin.org/article/10.3389/fnins.2013.00267},
214
+ doi={10.3389/fnins.2013.00267},
215
+ issn={1662-453X},
216
+ }
217
+
218
+ ***********
219
+ Licensing
220
+ ***********
221
+
222
+ This project is primarily licensed under the BSD-3-Clause License.
223
+
224
+ Additional Components
225
+ =====================
226
+
227
+ Some components within this repository are licensed under the Creative Commons
228
+ Attribution-NonCommercial 4.0 International License.
229
+
230
+ Please refer to the ``LICENSE`` and ``NOTICE`` files for more detailed information.
@@ -0,0 +1,146 @@
1
+ .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.8214376.svg
2
+ :target: https://doi.org/10.5281/zenodo.8214376
3
+ :alt: DOI
4
+
5
+ .. image:: https://github.com/braindecode/braindecode/workflows/docs/badge.svg
6
+ :target: https://github.com/braindecode/braindecode/actions/workflows/docs.yml
7
+ :alt: Docs Build Status
8
+
9
+ .. image:: https://github.com/braindecode/braindecode/workflows/tests/badge.svg
10
+ :target: https://github.com/braindecode/braindecode/actions/workflows/tests.yml
11
+ :alt: Test Build Status
12
+
13
+ .. image:: https://codecov.io/gh/braindecode/braindecode/branch/master/graph/badge.svg
14
+ :target: https://codecov.io/gh/braindecode/braindecode
15
+ :alt: Code Coverage
16
+
17
+ .. image:: https://img.shields.io/pypi/v/braindecode?color=blue&style=flat-square
18
+ :target: https://pypi.org/project/braindecode/
19
+ :alt: PyPI
20
+
21
+ .. image:: https://img.shields.io/pypi/v/braindecode?label=version&color=orange&style=flat-square
22
+ :target: https://pypi.org/project/braindecode/
23
+ :alt: Version
24
+
25
+ .. image:: https://img.shields.io/pypi/pyversions/braindecode?style=flat-square
26
+ :target: https://pypi.org/project/braindecode/
27
+ :alt: Python versions
28
+
29
+ .. image:: https://pepy.tech/badge/braindecode
30
+ :target: https://pepy.tech/project/braindecode
31
+ :alt: Downloads
32
+
33
+ .. |Braindecode| image:: https://user-images.githubusercontent.com/42702466/177958779-b00628aa-9155-4c51-96d1-d8c345aff575.svg
34
+
35
+ .. _braindecode: braindecode.org/
36
+
37
+ #############
38
+ Braindecode
39
+ #############
40
+
41
+ Braindecode is an open-source Python toolbox for decoding raw electrophysiological brain
42
+ data with deep learning models. It includes dataset fetchers, data preprocessing and
43
+ visualization tools, as well as implementations of several deep learning architectures
44
+ and data augmentations for analysis of EEG, ECoG and MEG.
45
+
46
+ For neuroscientists who want to work with deep learning and deep learning researchers
47
+ who want to work with neurophysiological data.
48
+
49
+ ##########################
50
+ Installation Braindecode
51
+ ##########################
52
+
53
+ 1. Install pytorch from http://pytorch.org/ (you don't need to install torchvision).
54
+ 2. If you want to download EEG datasets from `MOABB
55
+ <https://github.com/NeuroTechX/moabb>`_, install it:
56
+
57
+ .. code-block:: bash
58
+
59
+ pip install moabb
60
+
61
+ 3. Install latest release of braindecode via pip:
62
+
63
+ .. code-block:: bash
64
+
65
+ pip install braindecode
66
+
67
+ If you want to install the latest development version of braindecode, please refer to
68
+ `contributing page
69
+ <https://github.com/braindecode/braindecode/blob/master/CONTRIBUTING.md>`__
70
+
71
+ ###############
72
+ Documentation
73
+ ###############
74
+
75
+ Documentation is online under https://braindecode.org, both in the stable and dev
76
+ versions.
77
+
78
+ #############################
79
+ Contributing to Braindecode
80
+ #############################
81
+
82
+ Guidelines for contributing to the library can be found on the braindecode github:
83
+
84
+ https://github.com/braindecode/braindecode/blob/master/CONTRIBUTING.md
85
+
86
+ ########
87
+ Citing
88
+ ########
89
+
90
+ If you use Braindecode in scientific work, please cite the software using the Zenodo DOI
91
+ shown in the badge below:
92
+
93
+ .. image:: https://zenodo.org/badge/232335424.svg
94
+ :target: https://doi.org/10.5281/zenodo.8214376
95
+ :alt: DOI
96
+
97
+ Additionally, we highly encourage you to cite the article that originally introduced the
98
+ Braindecode library and has served as a foundational reference for many works on deep
99
+ learning with EEG recordings. Please use the following reference:
100
+
101
+ .. code-block:: bibtex
102
+
103
+ @article {HBM:HBM23730,
104
+ author = {Schirrmeister, Robin Tibor and Springenberg, Jost Tobias and Fiederer,
105
+ Lukas Dominique Josef and Glasstetter, Martin and Eggensperger, Katharina and Tangermann, Michael and
106
+ Hutter, Frank and Burgard, Wolfram and Ball, Tonio},
107
+ title = {Deep learning with convolutional neural networks for EEG decoding and visualization},
108
+ journal = {Human Brain Mapping},
109
+ issn = {1097-0193},
110
+ url = {http://dx.doi.org/10.1002/hbm.23730},
111
+ doi = {10.1002/hbm.23730},
112
+ month = {aug},
113
+ year = {2017},
114
+ keywords = {electroencephalography, EEG analysis, machine learning, end-to-end learning, brain–machine interface,
115
+ brain–computer interface, model interpretability, brain mapping},
116
+ }
117
+
118
+ as well as the `MNE-Python <https://mne.tools>`_ software that is used by braindecode:
119
+
120
+ .. code-block:: bibtex
121
+
122
+ @article{10.3389/fnins.2013.00267,
123
+ author={Gramfort, Alexandre and Luessi, Martin and Larson, Eric and Engemann, Denis and Strohmeier, Daniel and Brodbeck, Christian and Goj, Roman and Jas, Mainak and Brooks, Teon and Parkkonen, Lauri and Hämäläinen, Matti},
124
+ title={{MEG and EEG data analysis with MNE-Python}},
125
+ journal={Frontiers in Neuroscience},
126
+ volume={7},
127
+ pages={267},
128
+ year={2013},
129
+ url={https://www.frontiersin.org/article/10.3389/fnins.2013.00267},
130
+ doi={10.3389/fnins.2013.00267},
131
+ issn={1662-453X},
132
+ }
133
+
134
+ ***********
135
+ Licensing
136
+ ***********
137
+
138
+ This project is primarily licensed under the BSD-3-Clause License.
139
+
140
+ Additional Components
141
+ =====================
142
+
143
+ Some components within this repository are licensed under the Creative Commons
144
+ Attribution-NonCommercial 4.0 International License.
145
+
146
+ Please refer to the ``LICENSE`` and ``NOTICE`` files for more detailed information.
@@ -1,12 +1,12 @@
1
- """
2
- Utilities for data augmentation.
3
- """
1
+ """Utilities for data augmentation."""
4
2
 
5
3
  from . import functional
6
4
  from .base import AugmentedDataLoader, Compose, IdentityTransform, Transform
7
5
  from .transforms import (
6
+ AmplitudeScale,
8
7
  BandstopFilter,
9
8
  ChannelsDropout,
9
+ ChannelsReref,
10
10
  ChannelsShuffle,
11
11
  ChannelsSymmetry,
12
12
  FrequencyShift,
@@ -46,5 +46,7 @@ __all__ = [
46
46
  "Mixup",
47
47
  "SegmentationReconstruction",
48
48
  "MaskEncoding",
49
+ "AmplitudeScale",
50
+ "ChannelsReref",
49
51
  "functional",
50
52
  ]
@@ -31,7 +31,8 @@ Operation = Callable[
31
31
 
32
32
 
33
33
  class Transform(torch.nn.Module):
34
- """Basic transform class used for implementing data augmentation
34
+ """Basic transform class used for implementing data augmentation.
35
+
35
36
  operations.
36
37
 
37
38
  Parameters
@@ -42,7 +43,7 @@ class Transform(torch.nn.Module):
42
43
  probability : float, optional
43
44
  Float between 0 and 1 defining the uniform probability of applying the
44
45
  operation. Set to 1.0 by default (e.g always apply the operation).
45
- random_state: int, optional
46
+ random_state : int, optional
46
47
  Seed to be used to instantiate numpy random number generator instance.
47
48
  Used to decide whether or not to transform given the probability
48
49
  argument. Defaults to None.
@@ -125,7 +126,7 @@ class Transform(torch.nn.Module):
125
126
  return out_X
126
127
 
127
128
  def _get_mask(self, batch_size, device) -> torch.Tensor:
128
- """Samples whether to apply operation or not over the whole batch"""
129
+ """Samples whether to apply operation or not over the whole batch."""
129
130
  return torch.as_tensor(self.probability > self.rng.uniform(size=batch_size)).to(
130
131
  device
131
132
  )
@@ -153,7 +154,7 @@ class Compose(Transform):
153
154
 
154
155
  Parameters
155
156
  ----------
156
- transforms: list
157
+ transforms : list
157
158
  Sequence of Transforms to be composed.
158
159
  """
159
160
 
@@ -169,7 +170,9 @@ class Compose(Transform):
169
170
 
170
171
  def _make_collateable(transform, device=None):
171
172
  """Wraps a transform to make it collateable.
172
- with device control."""
173
+
174
+ with device control.
175
+ """
173
176
 
174
177
  def _collate_fn(batch):
175
178
  collated_batch = default_collate(batch)
@@ -144,7 +144,7 @@ def ft_surrogate(
144
144
  EEG input example or batch.
145
145
  y : torch.Tensor
146
146
  EEG labels for the example or batch.
147
- phase_noise_magnitude: float
147
+ phase_noise_magnitude : float
148
148
  Float between 0 and 1 setting the range over which the phase
149
149
  perturbation is uniformly sampled:
150
150
  [0, `phase_noise_magnitude` * 2 * `pi`].
@@ -152,7 +152,7 @@ def ft_surrogate(
152
152
  Whether to sample phase perturbations independently for each channel or
153
153
  not. It is advised to set it to False when spatial information is
154
154
  important for the task, like in BCI.
155
- random_state: int | numpy.random.Generator, optional
155
+ random_state : int | numpy.random.Generator, optional
156
156
  Used to draw the phase perturbation. Defaults to None.
157
157
 
158
158
  Returns
@@ -289,10 +289,10 @@ def channels_shuffle(
289
289
  EEG input example or batch.
290
290
  y : torch.Tensor
291
291
  EEG labels for the example or batch.
292
- p_shuffle: float | None
292
+ p_shuffle : float | None
293
293
  Float between 0 and 1 setting the probability of including the channel
294
294
  in the set of permutted channels.
295
- random_state: int | numpy.random.Generator, optional
295
+ random_state : int | numpy.random.Generator, optional
296
296
  Seed to be used to instantiate numpy random number generator instance.
297
297
  Used to sample which channels to shuffle and to carry the shuffle.
298
298
  Defaults to None.
@@ -335,7 +335,7 @@ def gaussian_noise(
335
335
  EEG labels for the example or batch.
336
336
  std : float
337
337
  Standard deviation to use for the additive noise.
338
- random_state: int | numpy.random.Generator, optional
338
+ random_state : int | numpy.random.Generator, optional
339
339
  Seed to be used to instantiate numpy random number generator instance.
340
340
  Defaults to None.
341
341
 
@@ -468,7 +468,8 @@ def bandstop_filter(
468
468
  bandwidth: float,
469
469
  freqs_to_notch: npt.ArrayLike | None,
470
470
  ) -> tuple[torch.Tensor, torch.Tensor]:
471
- """Apply a band-stop filter with desired bandwidth at the desired frequency
471
+ """Apply a band-stop filter with desired bandwidth at the desired frequency.
472
+
472
473
  position.
473
474
 
474
475
  Suggested e.g. in [1]_ and [2]_
@@ -620,6 +621,7 @@ def _torch_legval(
620
621
  ) -> torch.Tensor:
621
622
  """
622
623
  Evaluate a Legendre series at points x.
624
+
623
625
  If `c` is of length `n + 1`, this function returns the value:
624
626
  .. math:: p(x) = c_0 * L_0(x) + c_1 * L_1(x) + ... + c_n * L_n(x)
625
627
  The parameter `x` is converted to an array only if it is a tuple or a
@@ -805,12 +807,6 @@ def _torch_make_interpolation_matrix(
805
807
  The interpolation matrix that maps good signals to the location
806
808
  of bad signals.
807
809
 
808
- References
809
- ----------
810
- [1] Perrin, F., Pernier, J., Bertrand, O. and Echallier, JF. (1989).
811
- Spherical splines for scalp potential and current density mapping.
812
- Electroencephalography Clinical Neurophysiology, Feb; 72(2):184-7.
813
-
814
810
  Notes
815
811
  -----
816
812
  Code copied and modified from MNE-Python:
@@ -841,6 +837,12 @@ def _torch_make_interpolation_matrix(
841
837
  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
842
838
  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
843
839
  DAMAGE.
840
+
841
+ References
842
+ ----------
843
+ [1] Perrin, F., Pernier, J., Bertrand, O. and Echallier, JF. (1989).
844
+ Spherical splines for scalp potential and current density mapping.
845
+ Electroencephalography Clinical Neurophysiology, Feb; 72(2):184-7.
844
846
  """
845
847
  pos_from = pos_from.clone()
846
848
  pos_to = pos_to.clone()
@@ -968,7 +970,8 @@ def sensors_rotation(
968
970
  angles: npt.ArrayLike,
969
971
  spherical_splines: bool,
970
972
  ) -> tuple[torch.Tensor, torch.Tensor]:
971
- """Interpolates EEG signals over sensors rotated around the desired axis
973
+ """Interpolates EEG signals over sensors rotated around the desired axis.
974
+
972
975
  with the desired angle.
973
976
 
974
977
  Suggested in [1]_
@@ -1027,7 +1030,7 @@ def mixup(
1027
1030
  lam : torch.Tensor
1028
1031
  Values between 0 and 1 setting the linear interpolation between
1029
1032
  examples.
1030
- idx_perm: torch.Tensor
1033
+ idx_perm : torch.Tensor
1031
1034
  Permuted indices of example that are mixed into original examples.
1032
1035
 
1033
1036
  Returns
@@ -1080,18 +1083,20 @@ def segmentation_reconstruction(
1080
1083
  EEG labels for the example or batch.
1081
1084
  n_segments : int
1082
1085
  Number of segments to use in the batch.
1083
- data_classes: list[tuple[int, torch.Tensor]]
1086
+ data_classes : list[tuple[int, torch.Tensor]]
1084
1087
  List of tuples. Each tuple contains the class index and the corresponding EEG data.
1085
- rand_indices: array-like
1088
+ rand_indices : array-like
1086
1089
  Array of indices that indicates which trial to use in each segment.
1087
- idx_shuffle: array-like
1090
+ idx_shuffle : array-like
1088
1091
  Array of indices to shuffle the new generated trials.
1092
+
1089
1093
  Returns
1090
1094
  -------
1091
1095
  torch.Tensor
1092
1096
  Transformed inputs.
1093
1097
  torch.Tensor
1094
1098
  Transformed labels.
1099
+
1095
1100
  References
1096
1101
  ----------
1097
1102
  .. [1] Lotte, F. (2015). Signal processing approaches to minimize or
@@ -1145,7 +1150,7 @@ def mask_encoding(
1145
1150
  segment_length: int,
1146
1151
  n_segments: int,
1147
1152
  ) -> tuple[torch.Tensor, torch.Tensor]:
1148
- """Mark encoding from Ding et al. (2024) from [ding2024]_.
1153
+ """Mark encoding from Ding et al (2024) from [ding2024]_.
1149
1154
 
1150
1155
  Replaces a contiguous part (or parts) of all channels by zeros
1151
1156
  (if more than one segment, it may overlap).
@@ -1212,7 +1217,7 @@ def channels_rereference(
1212
1217
  EEG input example or batch.
1213
1218
  y : torch.Tensor
1214
1219
  EEG labels for the example or batch.
1215
- random_state: int | numpy.random.Generator, optional
1220
+ random_state : int | numpy.random.Generator, optional
1216
1221
  Seed to be used to instantiate numpy random number generator instance.
1217
1222
  Defaults to None.
1218
1223
 
@@ -1229,7 +1234,6 @@ def channels_rereference(
1229
1234
  Representation Learning for Electroencephalogram Classification. Proceedings
1230
1235
  of the Machine Learning for Health NeurIPS Workshop, in Proceedings of Machine
1231
1236
  Learning Research 136:238-253
1232
-
1233
1237
  """
1234
1238
 
1235
1239
  rng = check_random_state(random_state)
@@ -1262,7 +1266,7 @@ def amplitude_scale(
1262
1266
  EEG labels for the example or batch.
1263
1267
  scale : tuple of floats
1264
1268
  Interval from which ypu sample the scaling value
1265
- random_state: int | numpy.random.Generator, optional
1269
+ random_state : int | numpy.random.Generator, optional
1266
1270
  Seed to be used to instantiate numpy random number generator instance.
1267
1271
  Defaults to None.
1268
1272
 
@@ -1279,7 +1283,6 @@ def amplitude_scale(
1279
1283
  Representation Learning for Electroencephalogram Classification. Proceedings
1280
1284
  of the Machine Learning for Health NeurIPS Workshop, in Proceedings of Machine
1281
1285
  Learning Research 136:238-253
1282
-
1283
1286
  """
1284
1287
 
1285
1288
  rng = torch.Generator()