braindecode 1.0.0__py3-none-any.whl → 1.1.0__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 (42) hide show
  1. braindecode/augmentation/transforms.py +0 -1
  2. braindecode/datautil/__init__.py +3 -0
  3. braindecode/datautil/serialization.py +13 -2
  4. braindecode/functional/__init__.py +12 -0
  5. braindecode/functional/functions.py +0 -1
  6. braindecode/models/__init__.py +48 -0
  7. braindecode/models/atcnet.py +46 -11
  8. braindecode/models/attentionbasenet.py +49 -0
  9. braindecode/models/biot.py +29 -8
  10. braindecode/models/contrawr.py +29 -8
  11. braindecode/models/ctnet.py +99 -13
  12. braindecode/models/deep4.py +52 -2
  13. braindecode/models/eegconformer.py +2 -3
  14. braindecode/models/eeginception_mi.py +9 -3
  15. braindecode/models/eegitnet.py +0 -1
  16. braindecode/models/eegminer.py +0 -1
  17. braindecode/models/eegnet.py +0 -1
  18. braindecode/models/fbcnet.py +1 -1
  19. braindecode/models/fbmsnet.py +0 -1
  20. braindecode/models/labram.py +23 -3
  21. braindecode/models/msvtnet.py +1 -1
  22. braindecode/models/sccnet.py +29 -4
  23. braindecode/models/signal_jepa.py +0 -1
  24. braindecode/models/sleep_stager_eldele_2021.py +0 -1
  25. braindecode/models/sparcnet.py +62 -16
  26. braindecode/models/tcn.py +1 -1
  27. braindecode/models/tsinception.py +38 -13
  28. braindecode/models/util.py +2 -6
  29. braindecode/modules/__init__.py +46 -0
  30. braindecode/modules/filter.py +0 -4
  31. braindecode/modules/layers.py +3 -5
  32. braindecode/modules/linear.py +1 -2
  33. braindecode/modules/util.py +0 -1
  34. braindecode/modules/wrapper.py +0 -2
  35. braindecode/samplers/base.py +0 -2
  36. braindecode/version.py +1 -1
  37. {braindecode-1.0.0.dist-info → braindecode-1.1.0.dist-info}/METADATA +5 -5
  38. {braindecode-1.0.0.dist-info → braindecode-1.1.0.dist-info}/RECORD +42 -42
  39. {braindecode-1.0.0.dist-info → braindecode-1.1.0.dist-info}/WHEEL +0 -0
  40. {braindecode-1.0.0.dist-info → braindecode-1.1.0.dist-info}/licenses/LICENSE.txt +0 -0
  41. {braindecode-1.0.0.dist-info → braindecode-1.1.0.dist-info}/licenses/NOTICE.txt +0 -0
  42. {braindecode-1.0.0.dist-info → braindecode-1.1.0.dist-info}/top_level.txt +0 -0
@@ -3,13 +3,11 @@
3
3
  # License: BSD (3-clause)
4
4
  from __future__ import annotations
5
5
 
6
- import numpy as np
7
6
  import torch
8
- import torch.nn.functional as F
9
7
  from einops.layers.torch import Rearrange
10
- from torch import Tensor, nn
8
+ from torch import nn
11
9
 
12
- from braindecode.functional import drop_path, safe_log
10
+ from braindecode.functional import drop_path
13
11
 
14
12
 
15
13
  class Ensure4d(nn.Module):
@@ -110,7 +108,7 @@ class SqueezeFinalOutput(nn.Module):
110
108
  """
111
109
 
112
110
  Removes empty dimension at end and potentially removes empty time
113
- dimension. It does not just use squeeze as we never want to remove
111
+ dimension. It does not just use squeeze as we never want to remove
114
112
  first dimension.
115
113
 
116
114
  Returns
@@ -1,5 +1,4 @@
1
- import torch
2
- from torch import Tensor, nn
1
+ from torch import nn
3
2
  from torch.nn.utils.parametrize import register_parametrization
4
3
 
5
4
  from braindecode.modules.parametrization import MaxNorm, MaxNormParametrize
@@ -4,7 +4,6 @@
4
4
  # License: BSD (3-clause)
5
5
 
6
6
  import numpy as np
7
- import torch
8
7
  from scipy.special import log_softmax
9
8
 
10
9
 
@@ -1,5 +1,3 @@
1
- from typing import List, Tuple
2
-
3
1
  import torch
4
2
  from torch import nn
5
3
 
@@ -8,8 +8,6 @@ Sampler classes.
8
8
  #
9
9
  # License: BSD (3-clause)
10
10
 
11
- from typing import Optional
12
-
13
11
  import numpy as np
14
12
  from sklearn.utils import check_random_state
15
13
  from torch.utils.data.distributed import DistributedSampler
braindecode/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "1.0.0"
1
+ __version__ = "1.1.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: braindecode
3
- Version: 1.0.0
3
+ Version: 1.1.0
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>
@@ -29,12 +29,12 @@ Requires-Dist: pandas
29
29
  Requires-Dist: scipy
30
30
  Requires-Dist: matplotlib
31
31
  Requires-Dist: h5py
32
- Requires-Dist: skorch
33
- Requires-Dist: torch
34
- Requires-Dist: torchaudio
32
+ Requires-Dist: skorch~=0.14.0
33
+ Requires-Dist: torch~=2.0
34
+ Requires-Dist: torchaudio~=2.0
35
35
  Requires-Dist: einops
36
36
  Requires-Dist: joblib
37
- Requires-Dist: torchinfo
37
+ Requires-Dist: torchinfo~=1.8
38
38
  Requires-Dist: wfdb
39
39
  Requires-Dist: h5py
40
40
  Requires-Dist: linear_attention_transformer
@@ -3,11 +3,11 @@ braindecode/classifier.py,sha256=k9vSCtfQbld0YVleDi5rrrmk6k_k5JYEPPBYcNxYjZ8,980
3
3
  braindecode/eegneuralnet.py,sha256=dz8k_-2jV7WqkaX4bQG-dmr-vRT7ZtOwJqomXyC9PTw,15287
4
4
  braindecode/regressor.py,sha256=VLfrpiXklwI4onkwue3QmzlBWcvspu0tlrLo9RT1Oiw,9375
5
5
  braindecode/util.py,sha256=J-tBcDJNlMTIFW2mfOy6Ko0nsgdP4obRoEVDeg2rFH0,12686
6
- braindecode/version.py,sha256=J-j-u0itpEFT6irdmWmixQqYMadNl1X91TxUmoiLHMI,22
6
+ braindecode/version.py,sha256=LGVQyDsWifdACo7qztwb8RWWHds1E7uQ-ZqD8SAjyw4,22
7
7
  braindecode/augmentation/__init__.py,sha256=LG7ONqCufYAF9NZt8POIp10lYXb8iSueYkF-CWGK2Ls,1001
8
8
  braindecode/augmentation/base.py,sha256=gg7wYsVfa9jfqBddtE03B5ZrPHFFmPl2sa3LOrRnGfo,7325
9
9
  braindecode/augmentation/functional.py,sha256=ygkMNEFHaUdRQfk7meMML19FnM406Uf34h-ztKXdJwM,37978
10
- braindecode/augmentation/transforms.py,sha256=JFkUll0bUaaMBdWFcFex9aYqgnvfpc3IZbs8hHB_Zdo,44273
10
+ braindecode/augmentation/transforms.py,sha256=QgLoX6MFaiBH8WoVBgB8eY4x9jZNPMvj20zlwUM8AOs,44245
11
11
  braindecode/datasets/__init__.py,sha256=CTl8ucbG948ZJqntEBELb-Pn8GsZLfFZLgVcB-fhw4k,891
12
12
  braindecode/datasets/base.py,sha256=ED8RQWusMyWf0T7b_HXwouR2Ax47qppEc506AlSzBt0,32155
13
13
  braindecode/datasets/bbci.py,sha256=BC9o1thEyYBREAo930O7zZz3xZB-l4Odt5j8E_1huXI,19277
@@ -20,71 +20,71 @@ braindecode/datasets/sleep_physio_challe_18.py,sha256=KTvUtuarOOYu6PHN6H1vcy4W9x
20
20
  braindecode/datasets/sleep_physionet.py,sha256=jieRx6u-MQ4jn_5Zox_pVV8WjBwXKLv9uq4GXRAZ_58,4087
21
21
  braindecode/datasets/tuh.py,sha256=iG1hOtdevzKGEVpeuRFDBOnsW_rWa5zEmMFJfYR1hqg,22867
22
22
  braindecode/datasets/xy.py,sha256=xT-nS_5jpuVKJ0SGqc7Ia0FVpqj86UfuzcYQdEGZdp0,2986
23
- braindecode/datautil/__init__.py,sha256=53iVndXeqRYQ2k0S4qtjoMHYLqrrjIivYkUBgxT_wHw,1713
24
- braindecode/datautil/serialization.py,sha256=cqLn7H4NW_8O-Et-w7GoDMyCWuILZoV8LdqKGAGd13k,12574
23
+ braindecode/datautil/__init__.py,sha256=GB9xOudUhJGDyG08PBrnotw6HnWoWIXAHfRNFO-pxSk,1797
24
+ braindecode/datautil/serialization.py,sha256=gLIm9bcuR-XfVdII-RTplUWFRms9qVvVZ0-M6gTucNc,13028
25
25
  braindecode/datautil/util.py,sha256=ZfDoxLieKsgI8xcWQqebV-vJ5pJYRvRRHkEwhwpgoKU,674
26
- braindecode/functional/__init__.py,sha256=Jpp3A1OCdYoJ94y5VVDb9jjiimIcKk2RdrGnaOlh2cw,213
27
- braindecode/functional/functions.py,sha256=7HQHmGG-kk3VjPY5cE-XFK6_9Mlj0ZODbzYAlpcXW3U,8634
26
+ braindecode/functional/__init__.py,sha256=JPUDFeKtfogEzfrwPaZRBmxexPjBw7AglYMlImaAnWc,413
27
+ braindecode/functional/functions.py,sha256=CoEweM6YLhigx0tNmmz6yAc8iQ078sTFY2GeCjK5fFs,8622
28
28
  braindecode/functional/initialization.py,sha256=BUSC7y2TMsfShpMYBVwm3xg3ODFqWp-STH7yD4sn8zk,1388
29
- braindecode/models/__init__.py,sha256=FLOI-_mvkwapRY2DhQp-bSf5nWNoG4aMIvV0Unqgyy8,1681
30
- braindecode/models/atcnet.py,sha256=0DCaJ0FEZhFrA1oYigJkcsS5sSLtEginvjxVVEOxjN0,22767
31
- braindecode/models/attentionbasenet.py,sha256=KneWnjUA_LMOUF__2xPQmmrdlzpvrxh9A736eoY5A4o,21235
29
+ braindecode/models/__init__.py,sha256=xv1QPELZxocPgbc_mz-eYM5w08ZDNOsDV4pOnIFhUww,2551
30
+ braindecode/models/atcnet.py,sha256=PhDJl6nBChButabjsmLz_heRcGFCCMKoeUt7k7neNzs,24483
31
+ braindecode/models/attentionbasenet.py,sha256=1uwrtsdEGiBwokkO8A_2SR5zapOTQUBZd4q7hIpR0cw,23359
32
32
  braindecode/models/base.py,sha256=9icrWNZBGbh_VLyB9m8g_K1QyK7s3mh8X-hJ29gEbWs,10802
33
- braindecode/models/biot.py,sha256=5BpyBQ8WbFwCDFnTQDqtm1FqORIIvghy22YkLncxXnA,16653
34
- braindecode/models/contrawr.py,sha256=rcdK8ODlUV9cmdlhholx565lGrYuOZSC7VRC-zF2HoM,9246
35
- braindecode/models/ctnet.py,sha256=KdYin0IG9AfUx1hlBi7scwSDVPJCLX7XC8vYII8x3Yk,13705
36
- braindecode/models/deep4.py,sha256=t5aa9O4j0OmDLFyTO1SKZN6VznCz47Uok2QH0LRpkv0,12019
33
+ braindecode/models/biot.py,sha256=T4PymX3penMJcrdfb5Nq6B3P-jyP2laAIu_R9o3uCXo,17512
34
+ braindecode/models/contrawr.py,sha256=eeR_ik4gNZ3rJLM6Mw9gJ2gTMkZ8CU8C4rN_GQMQTAE,10044
35
+ braindecode/models/ctnet.py,sha256=-J9QtUM8kcntz_xinfuBBvwDMECHiMPMcr2MS4GDPEY,17308
36
+ braindecode/models/deep4.py,sha256=YJQUw-0EuFUi4qjm8caJGB8wRM_aeJa5X_d8jrGaQAI,14588
37
37
  braindecode/models/deepsleepnet.py,sha256=RrciuVJtZ-fhiUl-yLPfK2FP-G29V5Wor6pPlrMHQWQ,9218
38
- braindecode/models/eegconformer.py,sha256=Q24aWnTEkfgaxGg0qMcPqMtmyIIYl5z7Ys3lJLrWPLQ,11636
38
+ braindecode/models/eegconformer.py,sha256=_Y0SXprBD74zD8nKPcS9HQ6PoWzfpu-VCY7Tj6R7Xrs,11612
39
39
  braindecode/models/eeginception_erp.py,sha256=mwh3rGSHAJVvnbOlYTuWWkKxlmFAdAXBNCrq4IPgOS4,11408
40
- braindecode/models/eeginception_mi.py,sha256=ta3IPs22mFc8Fg8jRjWCucIQu6tUvSn2xDD4NIRVFZM,12161
41
- braindecode/models/eegitnet.py,sha256=-twgYp5GCAlBFVl4tAK6qTVvE6wDRWvB9RHeP7h4SHk,9840
42
- braindecode/models/eegminer.py,sha256=IKVOheOSLUwgy7Tdl1jWt7jaYrw4AecRfVMtMBflOFY,9877
43
- braindecode/models/eegnet.py,sha256=-5Ixnw7ypd6qxYHXnvVMkErLxH4otlPkEIgIxItZ8eA,16300
40
+ braindecode/models/eeginception_mi.py,sha256=aKJRFuYrpbcRbmmT2xVghKbK8pnl7fzu5hrV0ybRKso,12424
41
+ braindecode/models/eegitnet.py,sha256=feXFmPCd-Ejxt7jgWPen1Ag0-oSclDVQai0Atwu9d_A,9827
42
+ braindecode/models/eegminer.py,sha256=ouKZah9Q7_sxT7DJJMcPObwVxNQE87sEljJg6QwiQNw,9847
43
+ braindecode/models/eegnet.py,sha256=1ZAG0KLDedkodDfqgnGGsoZj6iuU55kGmBlyQo1b47w,16284
44
44
  braindecode/models/eegnex.py,sha256=KNJIh8pFNhY087Bey2OPzDD4Uqw9pS6UkwMjnOngBzg,8497
45
45
  braindecode/models/eegresnet.py,sha256=cqWOSGqfJN_dNYUU9l8nYd_S3T1N-UX5-encKQzfBlg,12057
46
46
  braindecode/models/eegsimpleconv.py,sha256=sHpK-7ZGOCMuXsdkSVuarFTd1T0jMJUP_xwXP3gxQwc,7268
47
47
  braindecode/models/eegtcnet.py,sha256=np-93Ttctp2uaEYpMrfXfH5bJmCOUZZHLjv8GJEEym4,10830
48
- braindecode/models/fbcnet.py,sha256=nMO-xc2XHdlj0h6Veby2sB-nFBNwYA4vm8TMAUfSENA,7494
48
+ braindecode/models/fbcnet.py,sha256=RBCLOaiUvivfsT2mq6FN0Kp1-rR3iB0ElzVpHxRl4oI,7486
49
49
  braindecode/models/fblightconvnet.py,sha256=d5MwhawhkjilAMo0ckaYMxJhdGMEuorWgHX-TBgwv6s,11041
50
- braindecode/models/fbmsnet.py,sha256=LYw7Smk0Hpft6PBsSq801xCqU5B88nhX-E-oDfilPnw,11689
50
+ braindecode/models/fbmsnet.py,sha256=9bZn2_n1dTrI1Qh3Sz9zMZnH_a-Yq-13UHYSmF6r_UE,11659
51
51
  braindecode/models/hybrid.py,sha256=hA8jwD3_3LL71BxUjRM1dkhqlHU9E9hjuDokh-jBq-4,4024
52
52
  braindecode/models/ifnet.py,sha256=Y2bwfko3SDjD74AzgUEzgMhKJFGCCw_Q_Noh5VONEjQ,15137
53
- braindecode/models/labram.py,sha256=PHTf7KuOTnDYeFmiCRxTvAhHzHLXEdIYQWSnQp1wOJI,41034
54
- braindecode/models/msvtnet.py,sha256=Y2n1X6cklleU4YA6ZIgw70DYTCl88gTMWKqgvWTniwg,12658
55
- braindecode/models/sccnet.py,sha256=Y9mh9jb0-BKiQU9oD3J-zQqNd83GJIjB_E_rUm2hH90,6704
53
+ braindecode/models/labram.py,sha256=vcrpwiu4F-djtIPscFbtP2Y0jTosyR_cXnOMQQRGPLw,41798
54
+ braindecode/models/msvtnet.py,sha256=hxeCLkHS6w2w89YlLfEPCyQ4XQQpt45bEYPiQJ9SFzY,12642
55
+ braindecode/models/sccnet.py,sha256=baGsNpVRdyWzbkTizOthJoJGejLb8BxMpN9ODwZinio,7919
56
56
  braindecode/models/shallow_fbcsp.py,sha256=-sL6XCmCUZVhKKrC84-KWgwhWKQQvev1oNSmH_d6FA4,7499
57
- braindecode/models/signal_jepa.py,sha256=0YI9thmiP3MRTf-cekewIHoXKjafuZqepLSsvHXN5Cc,37129
57
+ braindecode/models/signal_jepa.py,sha256=UeSkeAM3Qmx8bbAqHCj5nP-PtZM00_5SGA8ibo9mptc,37079
58
58
  braindecode/models/sinc_shallow.py,sha256=Ilv8K1XhMGiRTBtQdq7L595i6cEFYOBe0_UDv-LqL7s,11907
59
59
  braindecode/models/sleep_stager_blanco_2020.py,sha256=qPKMDLuv4J7et4dZHyTe-j0oB6ESYn9mA_aW7RMC-rU,6002
60
60
  braindecode/models/sleep_stager_chambon_2018.py,sha256=62x2Rdjd5UZDX8YlnfAtdRCrjLsPvPpnUweGElZLdkw,5213
61
- braindecode/models/sleep_stager_eldele_2021.py,sha256=-gY-cGmxQ2waA-6fwIvxYWQSodZQKPzXr7v3g3FwBt8,17593
62
- braindecode/models/sparcnet.py,sha256=3lDsQzwq8r_Dg1HlrZiBmwx_ijCXDm2ngOfTneorBIk,12144
61
+ braindecode/models/sleep_stager_eldele_2021.py,sha256=-4ISuznykDy9ZFzUM-OeiGCwmgM3U-LuyoDSrhPbRDw,17555
62
+ braindecode/models/sparcnet.py,sha256=eZMoJOxlcIyHPdQiX7KXUKuUBlAWkTwsXNWmNma_KAI,13941
63
63
  braindecode/models/summary.csv,sha256=l7HYYwv3Z69JRPVIhVq-wr_nC1J1KIz6IGw_zeRSk58,6110
64
64
  braindecode/models/syncnet.py,sha256=nrWJC5ijCSWKVZyRn-dmOuc1t5vk2C6tx8U3U4j5d5Y,8362
65
- braindecode/models/tcn.py,sha256=siazLYl3zOtD499UZFjQwqsYNOomMX6lGmXGxltYxWk,8170
65
+ braindecode/models/tcn.py,sha256=SQu56H9zdbcbbDIXZVgZtJg7es8CRAJ7z-IBnmf4UWM,8158
66
66
  braindecode/models/tidnet.py,sha256=k7Q0yAnEBmq1sqhsvoV4-g8wfYSUQ-C3iYxfLp5m8xQ,11805
67
- braindecode/models/tsinception.py,sha256=E1jDXpGYiOddOFmeV-0esy-DHoCpS6LFygbDfwVcgSY,8864
67
+ braindecode/models/tsinception.py,sha256=EcfLDDJXZloh_vrKRuxAHYRZ1EVWlEKHNXqybTRrTbQ,10116
68
68
  braindecode/models/usleep.py,sha256=dFh3KiZITu13gMxcbPGoK4hq2ySDWzVSCQXkj1006w0,11605
69
- braindecode/models/util.py,sha256=7he-Y5KpDYXjMhLbQXauJWslynM4FvbeYG9VT82zbHg,5387
70
- braindecode/modules/__init__.py,sha256=cwH_l1R6Y6t3OV9qunh6UkPIWGH2JtMh9gGKxgMhvc8,911
69
+ braindecode/models/util.py,sha256=VrhwG1YBGwKohCej6TmhrNAIoleQHRu3YdiBPuHFY_E,5302
70
+ braindecode/modules/__init__.py,sha256=PD2LpeSHWW_MgEef7-G8ief5gheGObzsIoacchxWuyA,1756
71
71
  braindecode/modules/activation.py,sha256=lTO2IjZWBDeXZ4ZVDgLmTDmxHdqyAny3Fsy07HY9tmQ,1466
72
72
  braindecode/modules/attention.py,sha256=fsjruzqMdtPbcS6jbU5ux8xtHl0BVrKt4agyf2yNe_E,23966
73
73
  braindecode/modules/blocks.py,sha256=QE34HBg7kmEj0z-8dQZ1jJErLRPcniGIorMTeIArpv4,3621
74
74
  braindecode/modules/convolution.py,sha256=VAqJXj1Xfb7qlnjRAhH_fJT8qPcaAqy5FHu_sNEbkWw,8291
75
- braindecode/modules/filter.py,sha256=Utjdnt2dxGXE7ibr778IhwwRBN3FfSu7lxB07aCbDdY,25158
76
- braindecode/modules/layers.py,sha256=RL4O-kXgCBjVTe8TgA2t_o9fPvv4pv5Jr3wyRtH-XlU,3794
77
- braindecode/modules/linear.py,sha256=r8bxoz43x5F382j5wqHF6DhZy6Hij9gUQzBz4ZYzqvI,1723
75
+ braindecode/modules/filter.py,sha256=tj3zFQf40kt605yKE3bGpmnxtf91FTY7cWqxwAIIGPc,25050
76
+ braindecode/modules/layers.py,sha256=w_tAGcm8BDFiyMdAYM4DNLx46zIUted8B6my8_jtpps,3724
77
+ braindecode/modules/linear.py,sha256=pNhSUU0u-IGEUCjAfEDq_TJWnIJMWuOk7Y5L-7I8Meg,1702
78
78
  braindecode/modules/parametrization.py,sha256=sTvV21-sdpqpiY2PzwDebi7SeEvkFw8yDgA6OqJDo34,1310
79
79
  braindecode/modules/stats.py,sha256=ETqZH6PPyYCss2PKBDNrO4uUeijR4bxvjCQCXjNJkH4,2398
80
- braindecode/modules/util.py,sha256=5oKG2sfrn21MGAJ8BHxEBLbjC9agZDq-s56KZX4cijo,2622
81
- braindecode/modules/wrapper.py,sha256=O2krRJKwhpRRbevT_a2cM80Ww355MjDtXK_T9xTA_nk,2453
80
+ braindecode/modules/util.py,sha256=tVXEhzeTsYrr_wZ5CiXaq3VYGtC5TmGEEW2hMYjTQAE,2609
81
+ braindecode/modules/wrapper.py,sha256=Z-aZ4wxA0psYefMOfj03r7D1XjD4az6GpZpaQoDPJv0,2421
82
82
  braindecode/preprocessing/__init__.py,sha256=V0iwdzb6DzpUaCabA7I6HmOqXK_XvTbpP5HaEduSJ4s,776
83
83
  braindecode/preprocessing/mne_preprocess.py,sha256=_Jczaitqbx16utsUOhnonEcoExf6jPsWNwVOVvoKFfU,2210
84
84
  braindecode/preprocessing/preprocess.py,sha256=-9IKjb0THq36m54TK-YRzV18wIkxmVgTcGO2sEH6q98,17665
85
85
  braindecode/preprocessing/windowers.py,sha256=6w6mOnroGWnV7tS23UagZZepswaxaL00S45Jr5AViRE,36551
86
86
  braindecode/samplers/__init__.py,sha256=TLuO6gXv2WioJdX671MI_CHVSsOfbjnly1Xv9K3_WdA,452
87
- braindecode/samplers/base.py,sha256=bDJArEyGZQuGUv6fkIms-u8--pY8z7YJIvr6iJEaNzE,15140
87
+ braindecode/samplers/base.py,sha256=z_Txp9cEwUmIBL0J6FPJbx1cMSsU9l9mxymRCGqNss0,15111
88
88
  braindecode/samplers/ssl.py,sha256=C-FKopnbncN_-spQPCrgljY5Qds4fgTLr2TG3s_-QqU,9146
89
89
  braindecode/training/__init__.py,sha256=sxtfI6MgxX3aP03EFc0wJYA37uULoL9SQyUao1Oxyn0,523
90
90
  braindecode/training/callbacks.py,sha256=LqXqzJd6s3w0pvAKy9TEVTxWwVRyWNEu2uyWVsvb9RQ,839
@@ -93,9 +93,9 @@ braindecode/training/scoring.py,sha256=tG7uCojIG3KIQZq3AymrdwlIJLlzbgsS0nBLUXQ-A
93
93
  braindecode/visualization/__init__.py,sha256=4EER_xHqZIDzEvmgUEm7K1bgNKpyZAIClR9ZCkMuY4M,240
94
94
  braindecode/visualization/confusion_matrices.py,sha256=qIWMLEHow5CJ7PhGggD8mnD55Le6xhma9HSzt4R33fc,9509
95
95
  braindecode/visualization/gradients.py,sha256=qAtXmuXkCDsWs8RMxvE6T9dz3uv_BhwTqhzkFFsEUDI,1948
96
- braindecode-1.0.0.dist-info/licenses/LICENSE.txt,sha256=7rg7k6hyj8m9whQ7dpKbqnCssoOEx_Mbtqb4uSOjljE,1525
97
- braindecode-1.0.0.dist-info/licenses/NOTICE.txt,sha256=sOxuTbalPxTM8H6VqtvGbXCt_BoOF7JevEYG_knqbm4,620
98
- braindecode-1.0.0.dist-info/METADATA,sha256=h7UXT9Mpi-aJUWWsn6tuOrnn3pTaY9HX4D6e-idWSr8,6807
99
- braindecode-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
100
- braindecode-1.0.0.dist-info/top_level.txt,sha256=pHsWQmSy0uhIez62-HA9j0iaXKvSbUL39ifFRkFnChA,12
101
- braindecode-1.0.0.dist-info/RECORD,,
96
+ braindecode-1.1.0.dist-info/licenses/LICENSE.txt,sha256=7rg7k6hyj8m9whQ7dpKbqnCssoOEx_Mbtqb4uSOjljE,1525
97
+ braindecode-1.1.0.dist-info/licenses/NOTICE.txt,sha256=sOxuTbalPxTM8H6VqtvGbXCt_BoOF7JevEYG_knqbm4,620
98
+ braindecode-1.1.0.dist-info/METADATA,sha256=jLapBzCcGh3gyo0cDE0PsjRsK8FWkqJVcV5Q5-3xnu0,6830
99
+ braindecode-1.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
100
+ braindecode-1.1.0.dist-info/top_level.txt,sha256=pHsWQmSy0uhIez62-HA9j0iaXKvSbUL39ifFRkFnChA,12
101
+ braindecode-1.1.0.dist-info/RECORD,,