braindecode 1.0.0__py3-none-any.whl → 1.1.1.dev174934380__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.
- braindecode/augmentation/transforms.py +0 -1
- braindecode/datautil/__init__.py +3 -0
- braindecode/datautil/serialization.py +13 -2
- braindecode/functional/__init__.py +12 -0
- braindecode/functional/functions.py +0 -1
- braindecode/models/__init__.py +48 -0
- braindecode/models/atcnet.py +46 -11
- braindecode/models/attentionbasenet.py +49 -0
- braindecode/models/biot.py +29 -8
- braindecode/models/contrawr.py +29 -8
- braindecode/models/ctnet.py +99 -13
- braindecode/models/deep4.py +52 -2
- braindecode/models/eegconformer.py +2 -3
- braindecode/models/eeginception_mi.py +9 -3
- braindecode/models/eegitnet.py +0 -1
- braindecode/models/eegminer.py +0 -1
- braindecode/models/eegnet.py +0 -1
- braindecode/models/fbcnet.py +1 -1
- braindecode/models/fbmsnet.py +0 -1
- braindecode/models/labram.py +23 -3
- braindecode/models/msvtnet.py +1 -1
- braindecode/models/sccnet.py +29 -4
- braindecode/models/signal_jepa.py +0 -1
- braindecode/models/sleep_stager_eldele_2021.py +0 -1
- braindecode/models/sparcnet.py +62 -16
- braindecode/models/tcn.py +1 -1
- braindecode/models/tsinception.py +38 -13
- braindecode/models/util.py +2 -6
- braindecode/modules/__init__.py +46 -0
- braindecode/modules/filter.py +0 -4
- braindecode/modules/layers.py +3 -5
- braindecode/modules/linear.py +1 -2
- braindecode/modules/util.py +0 -1
- braindecode/modules/wrapper.py +0 -2
- braindecode/samplers/base.py +0 -2
- braindecode/version.py +1 -1
- {braindecode-1.0.0.dist-info → braindecode-1.1.1.dev174934380.dist-info}/METADATA +8 -7
- {braindecode-1.0.0.dist-info → braindecode-1.1.1.dev174934380.dist-info}/RECORD +42 -42
- {braindecode-1.0.0.dist-info → braindecode-1.1.1.dev174934380.dist-info}/WHEEL +0 -0
- {braindecode-1.0.0.dist-info → braindecode-1.1.1.dev174934380.dist-info}/licenses/LICENSE.txt +0 -0
- {braindecode-1.0.0.dist-info → braindecode-1.1.1.dev174934380.dist-info}/licenses/NOTICE.txt +0 -0
- {braindecode-1.0.0.dist-info → braindecode-1.1.1.dev174934380.dist-info}/top_level.txt +0 -0
braindecode/modules/layers.py
CHANGED
|
@@ -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
|
|
8
|
+
from torch import nn
|
|
11
9
|
|
|
12
|
-
from braindecode.functional import drop_path
|
|
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
|
|
111
|
+
dimension. It does not just use squeeze as we never want to remove
|
|
114
112
|
first dimension.
|
|
115
113
|
|
|
116
114
|
Returns
|
braindecode/modules/linear.py
CHANGED
braindecode/modules/util.py
CHANGED
braindecode/modules/wrapper.py
CHANGED
braindecode/samplers/base.py
CHANGED
braindecode/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.
|
|
1
|
+
__version__ = "1.1.1.dev174934380"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: braindecode
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.1.dev174934380
|
|
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>
|
|
@@ -14,11 +14,10 @@ Classifier: Intended Audience :: Developers
|
|
|
14
14
|
Classifier: Intended Audience :: Science/Research
|
|
15
15
|
Classifier: Topic :: Software Development :: Build Tools
|
|
16
16
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
-
Requires-Python: >3.
|
|
20
|
+
Requires-Python: >3.10
|
|
22
21
|
Description-Content-Type: text/x-rst
|
|
23
22
|
License-File: LICENSE.txt
|
|
24
23
|
License-File: NOTICE.txt
|
|
@@ -29,12 +28,12 @@ Requires-Dist: pandas
|
|
|
29
28
|
Requires-Dist: scipy
|
|
30
29
|
Requires-Dist: matplotlib
|
|
31
30
|
Requires-Dist: h5py
|
|
32
|
-
Requires-Dist: skorch
|
|
33
|
-
Requires-Dist: torch
|
|
34
|
-
Requires-Dist: torchaudio
|
|
31
|
+
Requires-Dist: skorch>=1.2.0
|
|
32
|
+
Requires-Dist: torch<3.0,>=2.0
|
|
33
|
+
Requires-Dist: torchaudio<3.0,>=2.0
|
|
35
34
|
Requires-Dist: einops
|
|
36
35
|
Requires-Dist: joblib
|
|
37
|
-
Requires-Dist: torchinfo
|
|
36
|
+
Requires-Dist: torchinfo~=1.8
|
|
38
37
|
Requires-Dist: wfdb
|
|
39
38
|
Requires-Dist: h5py
|
|
40
39
|
Requires-Dist: linear_attention_transformer
|
|
@@ -60,6 +59,8 @@ Requires-Dist: lightning; extra == "docs"
|
|
|
60
59
|
Requires-Dist: seaborn; extra == "docs"
|
|
61
60
|
Requires-Dist: pre-commit; extra == "docs"
|
|
62
61
|
Requires-Dist: openneuro-py; extra == "docs"
|
|
62
|
+
Provides-Extra: all
|
|
63
|
+
Requires-Dist: braindecode[docs,moabb,tests]; extra == "all"
|
|
63
64
|
Dynamic: license-file
|
|
64
65
|
|
|
65
66
|
.. image:: https://badges.gitter.im/braindecodechat/community.svg
|
|
@@ -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=
|
|
6
|
+
braindecode/version.py,sha256=K-C9XnDK_cuQzI86m4nYhnXEi-DhQ96Vmr6WqYNq6TA,35
|
|
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=
|
|
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=
|
|
24
|
-
braindecode/datautil/serialization.py,sha256=
|
|
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=
|
|
27
|
-
braindecode/functional/functions.py,sha256=
|
|
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=
|
|
30
|
-
braindecode/models/atcnet.py,sha256=
|
|
31
|
-
braindecode/models/attentionbasenet.py,sha256=
|
|
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=
|
|
34
|
-
braindecode/models/contrawr.py,sha256=
|
|
35
|
-
braindecode/models/ctnet.py,sha256
|
|
36
|
-
braindecode/models/deep4.py,sha256=
|
|
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=
|
|
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=
|
|
41
|
-
braindecode/models/eegitnet.py,sha256
|
|
42
|
-
braindecode/models/eegminer.py,sha256=
|
|
43
|
-
braindecode/models/eegnet.py,sha256
|
|
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=
|
|
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=
|
|
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=
|
|
54
|
-
braindecode/models/msvtnet.py,sha256=
|
|
55
|
-
braindecode/models/sccnet.py,sha256=
|
|
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=
|
|
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=-
|
|
62
|
-
braindecode/models/sparcnet.py,sha256=
|
|
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=
|
|
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=
|
|
67
|
+
braindecode/models/tsinception.py,sha256=EcfLDDJXZloh_vrKRuxAHYRZ1EVWlEKHNXqybTRrTbQ,10116
|
|
68
68
|
braindecode/models/usleep.py,sha256=dFh3KiZITu13gMxcbPGoK4hq2ySDWzVSCQXkj1006w0,11605
|
|
69
|
-
braindecode/models/util.py,sha256=
|
|
70
|
-
braindecode/modules/__init__.py,sha256=
|
|
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=
|
|
76
|
-
braindecode/modules/layers.py,sha256=
|
|
77
|
-
braindecode/modules/linear.py,sha256=
|
|
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=
|
|
81
|
-
braindecode/modules/wrapper.py,sha256=
|
|
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=
|
|
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.
|
|
97
|
-
braindecode-1.
|
|
98
|
-
braindecode-1.
|
|
99
|
-
braindecode-1.
|
|
100
|
-
braindecode-1.
|
|
101
|
-
braindecode-1.
|
|
96
|
+
braindecode-1.1.1.dev174934380.dist-info/licenses/LICENSE.txt,sha256=7rg7k6hyj8m9whQ7dpKbqnCssoOEx_Mbtqb4uSOjljE,1525
|
|
97
|
+
braindecode-1.1.1.dev174934380.dist-info/licenses/NOTICE.txt,sha256=sOxuTbalPxTM8H6VqtvGbXCt_BoOF7JevEYG_knqbm4,620
|
|
98
|
+
braindecode-1.1.1.dev174934380.dist-info/METADATA,sha256=o4CgimgLMwsqna1ZTBupHJzj06ikPjva4blvLaXrGL4,6883
|
|
99
|
+
braindecode-1.1.1.dev174934380.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
100
|
+
braindecode-1.1.1.dev174934380.dist-info/top_level.txt,sha256=pHsWQmSy0uhIez62-HA9j0iaXKvSbUL39ifFRkFnChA,12
|
|
101
|
+
braindecode-1.1.1.dev174934380.dist-info/RECORD,,
|
|
File without changes
|
{braindecode-1.0.0.dist-info → braindecode-1.1.1.dev174934380.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
{braindecode-1.0.0.dist-info → braindecode-1.1.1.dev174934380.dist-info}/licenses/NOTICE.txt
RENAMED
|
File without changes
|
|
File without changes
|