eegdash 0.3.3.dev61__py3-none-any.whl → 0.5.0.dev180784713__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.
Files changed (45) hide show
  1. eegdash/__init__.py +19 -6
  2. eegdash/api.py +336 -539
  3. eegdash/bids_eeg_metadata.py +495 -0
  4. eegdash/const.py +349 -0
  5. eegdash/dataset/__init__.py +28 -0
  6. eegdash/dataset/base.py +311 -0
  7. eegdash/dataset/bids_dataset.py +641 -0
  8. eegdash/dataset/dataset.py +692 -0
  9. eegdash/dataset/dataset_summary.csv +255 -0
  10. eegdash/dataset/registry.py +287 -0
  11. eegdash/downloader.py +197 -0
  12. eegdash/features/__init__.py +15 -13
  13. eegdash/features/datasets.py +329 -138
  14. eegdash/features/decorators.py +105 -13
  15. eegdash/features/extractors.py +233 -63
  16. eegdash/features/feature_bank/__init__.py +12 -12
  17. eegdash/features/feature_bank/complexity.py +22 -20
  18. eegdash/features/feature_bank/connectivity.py +27 -28
  19. eegdash/features/feature_bank/csp.py +3 -1
  20. eegdash/features/feature_bank/dimensionality.py +6 -6
  21. eegdash/features/feature_bank/signal.py +29 -30
  22. eegdash/features/feature_bank/spectral.py +40 -44
  23. eegdash/features/feature_bank/utils.py +8 -0
  24. eegdash/features/inspect.py +126 -15
  25. eegdash/features/serialization.py +58 -17
  26. eegdash/features/utils.py +90 -16
  27. eegdash/hbn/__init__.py +28 -0
  28. eegdash/hbn/preprocessing.py +105 -0
  29. eegdash/hbn/windows.py +428 -0
  30. eegdash/logging.py +54 -0
  31. eegdash/mongodb.py +55 -24
  32. eegdash/paths.py +52 -0
  33. eegdash/utils.py +29 -1
  34. eegdash-0.5.0.dev180784713.dist-info/METADATA +121 -0
  35. eegdash-0.5.0.dev180784713.dist-info/RECORD +38 -0
  36. eegdash-0.5.0.dev180784713.dist-info/licenses/LICENSE +29 -0
  37. eegdash/data_config.py +0 -34
  38. eegdash/data_utils.py +0 -687
  39. eegdash/dataset.py +0 -69
  40. eegdash/preprocessing.py +0 -63
  41. eegdash-0.3.3.dev61.dist-info/METADATA +0 -192
  42. eegdash-0.3.3.dev61.dist-info/RECORD +0 -28
  43. eegdash-0.3.3.dev61.dist-info/licenses/LICENSE +0 -23
  44. {eegdash-0.3.3.dev61.dist-info → eegdash-0.5.0.dev180784713.dist-info}/WHEEL +0 -0
  45. {eegdash-0.3.3.dev61.dist-info → eegdash-0.5.0.dev180784713.dist-info}/top_level.txt +0 -0
eegdash/dataset.py DELETED
@@ -1,69 +0,0 @@
1
- from .api import EEGDashDataset
2
-
3
- RELEASE_TO_OPENNEURO_DATASET_MAP = {
4
- "R11": "ds005516",
5
- "R10": "ds005515",
6
- "R9": "ds005514",
7
- "R8": "ds005512",
8
- "R7": "ds005511",
9
- "R6": "ds005510",
10
- "R4": "ds005508",
11
- "R5": "ds005509",
12
- "R3": "ds005507",
13
- "R2": "ds005506",
14
- "R1": "ds005505",
15
- }
16
-
17
-
18
- class EEGChallengeDataset(EEGDashDataset):
19
- def __init__(
20
- self,
21
- release: str,
22
- cache_dir: str,
23
- query: dict | None = None,
24
- s3_bucket: str | None = "s3://nmdatasets/NeurIPS25",
25
- **kwargs,
26
- ):
27
- """Create a new EEGDashDataset from a given query or local BIDS dataset directory
28
- and dataset name. An EEGDashDataset is pooled collection of EEGDashBaseDataset
29
- instances (individual recordings) and is a subclass of braindecode's BaseConcatDataset.
30
-
31
- Parameters
32
- ----------
33
- release: str
34
- Release name. Can be one of ["R1", ..., "R11"]
35
- query : dict | None
36
- Optionally a dictionary that specifies a query to be executed,
37
- in addition to the dataset (automatically inferred from the release argument).
38
- See EEGDash.find() for details on the query format.
39
- cache_dir : str
40
- A directory where the dataset will be cached locally.
41
- s3_bucket : str | None
42
- An optional S3 bucket URI to use instead of the
43
- default OpenNeuro bucket for loading data files.
44
- kwargs : dict
45
- Additional keyword arguments to be passed to the EEGDashDataset
46
- constructor.
47
-
48
- """
49
- self.release = release
50
- if release not in RELEASE_TO_OPENNEURO_DATASET_MAP:
51
- raise ValueError(f"Unknown release: {release}")
52
-
53
- dataset = RELEASE_TO_OPENNEURO_DATASET_MAP[release]
54
- if query is None:
55
- query = {"dataset": dataset}
56
- elif "dataset" not in query:
57
- query["dataset"] = dataset
58
- elif query["dataset"] != dataset:
59
- raise ValueError(
60
- f"Query dataset {query['dataset']} does not match the release {release} "
61
- f"which corresponds to dataset {dataset}."
62
- )
63
-
64
- super().__init__(
65
- query=query,
66
- cache_dir=cache_dir,
67
- s3_bucket=f"{s3_bucket}/{release}_L100",
68
- **kwargs,
69
- )
eegdash/preprocessing.py DELETED
@@ -1,63 +0,0 @@
1
- import logging
2
-
3
- import mne
4
- import numpy as np
5
-
6
- from braindecode.preprocessing import Preprocessor
7
-
8
- logger = logging.getLogger("eegdash")
9
-
10
-
11
- class hbn_ec_ec_reannotation(Preprocessor):
12
- """Preprocessor to reannotate the raw data for eyes open and eyes closed events.
13
-
14
- This processor is designed for HBN datasets.
15
-
16
- """
17
-
18
- def __init__(self):
19
- super().__init__(fn=self.transform, apply_on_array=False)
20
-
21
- def transform(self, raw):
22
- """Reannotate the raw data to create new events for eyes open and eyes closed
23
-
24
- This function modifies the raw MNE object by creating new events based on
25
- the existing annotations for "instructed_toCloseEyes" and "instructed_toOpenEyes".
26
- It generates new events every 2 seconds within specified time ranges after
27
- the original events, and replaces the existing annotations with these new events.
28
-
29
- Parameters
30
- ----------
31
- raw : mne.io.Raw
32
- The raw MNE object containing EEG data and annotations.
33
-
34
- """
35
- events, event_id = mne.events_from_annotations(raw)
36
-
37
- logger.info("Original events found with ids: %s", event_id)
38
-
39
- # Create new events array for 2-second segments
40
- new_events = []
41
- sfreq = raw.info["sfreq"]
42
- for event in events[events[:, 2] == event_id["instructed_toCloseEyes"]]:
43
- # For each original event, create events every 2 seconds from 15s to 29s after
44
- start_times = event[0] + np.arange(15, 29, 2) * sfreq
45
- new_events.extend([[int(t), 0, 1] for t in start_times])
46
-
47
- for event in events[events[:, 2] == event_id["instructed_toOpenEyes"]]:
48
- # For each original event, create events every 2 seconds from 5s to 19s after
49
- start_times = event[0] + np.arange(5, 19, 2) * sfreq
50
- new_events.extend([[int(t), 0, 2] for t in start_times])
51
-
52
- # replace events in raw
53
- new_events = np.array(new_events)
54
-
55
- annot_from_events = mne.annotations_from_events(
56
- events=new_events,
57
- event_desc={1: "eyes_closed", 2: "eyes_open"},
58
- sfreq=raw.info["sfreq"],
59
- )
60
-
61
- raw.set_annotations(annot_from_events)
62
-
63
- return raw
@@ -1,192 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: eegdash
3
- Version: 0.3.3.dev61
4
- Summary: EEG data for machine learning
5
- Author-email: Young Truong <dt.young112@gmail.com>, Arnaud Delorme <adelorme@gmail.com>, Aviv Dotan <avivd220@gmail.com>, Oren Shriki <oren70@gmail.com>, Bruno Aristimunha <b.aristimunha@gmail.com>
6
- License: GNU General Public License
7
-
8
- Copyright (C) 2024-2025
9
-
10
- Young Truong, UCSD, dt.young112@gmail.com
11
- Arnaud Delorme, UCSD, adelorme@ucsd.edu
12
- Aviv Dotan, BGU, avivdot@bgu.post.ac.il
13
- Oren Shriki, BGU, shrikio@bgu.ac.il
14
- Bruno Aristimunha, b.aristimunha@gmail.com
15
-
16
- This program is free software; you can redistribute it and/or modify
17
- it under the terms of the GNU General Public License as published by
18
- the Free Software Foundation; either version 2 of the License, or
19
- (at your option) any later version.
20
-
21
- This program is distributed in the hope that it will be useful,
22
- but WITHOUT ANY WARRANTY; without even the implied warranty of
23
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24
- GNU General Public License for more details.
25
-
26
- You should have received a copy of the GNU General Public License
27
- along with this program; if not, write to the Free Software
28
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1.07 USA
29
-
30
- Project-URL: Homepage, https://github.com/sccn/EEG-Dash-Data
31
- Project-URL: Issues, https://github.com/sccn/EEG-Dash-Data/issues
32
- Classifier: License :: OSI Approved :: MIT License
33
- Classifier: Operating System :: OS Independent
34
- Classifier: Intended Audience :: Science/Research
35
- Classifier: Intended Audience :: Developers
36
- Classifier: Programming Language :: Python
37
- Classifier: Topic :: Software Development
38
- Classifier: Topic :: Scientific/Engineering
39
- Classifier: Development Status :: 3 - Alpha
40
- Classifier: Operating System :: Microsoft :: Windows
41
- Classifier: Operating System :: POSIX
42
- Classifier: Operating System :: Unix
43
- Classifier: Operating System :: MacOS
44
- Classifier: Programming Language :: Python :: 3
45
- Classifier: Programming Language :: Python :: 3.10
46
- Classifier: Programming Language :: Python :: 3.11
47
- Classifier: Programming Language :: Python :: 3.12
48
- Requires-Python: >=3.10
49
- Description-Content-Type: text/markdown
50
- License-File: LICENSE
51
- Requires-Dist: braindecode>=1.0
52
- Requires-Dist: mne_bids>=0.16.0
53
- Requires-Dist: numba
54
- Requires-Dist: numpy
55
- Requires-Dist: pandas
56
- Requires-Dist: pybids
57
- Requires-Dist: pymongo
58
- Requires-Dist: python-dotenv
59
- Requires-Dist: s3fs
60
- Requires-Dist: scipy
61
- Requires-Dist: tqdm
62
- Requires-Dist: xarray
63
- Requires-Dist: h5io>=0.2.4
64
- Requires-Dist: pymatreader
65
- Provides-Extra: tests
66
- Requires-Dist: pytest; extra == "tests"
67
- Requires-Dist: pytest-cov; extra == "tests"
68
- Requires-Dist: codecov; extra == "tests"
69
- Requires-Dist: pytest_cases; extra == "tests"
70
- Requires-Dist: pytest-benchmark; extra == "tests"
71
- Provides-Extra: dev
72
- Requires-Dist: pre-commit; extra == "dev"
73
- Provides-Extra: docs
74
- Requires-Dist: sphinx; extra == "docs"
75
- Requires-Dist: sphinx_design; extra == "docs"
76
- Requires-Dist: sphinx_gallery; extra == "docs"
77
- Requires-Dist: sphinx_rtd_theme; extra == "docs"
78
- Requires-Dist: pydata-sphinx-theme; extra == "docs"
79
- Requires-Dist: numpydoc; extra == "docs"
80
- Requires-Dist: memory_profiler; extra == "docs"
81
- Requires-Dist: ipython; extra == "docs"
82
- Requires-Dist: lightgbm; extra == "docs"
83
- Provides-Extra: all
84
- Requires-Dist: pre-commit; extra == "all"
85
- Requires-Dist: pytest; extra == "all"
86
- Requires-Dist: pytest-cov; extra == "all"
87
- Requires-Dist: codecov; extra == "all"
88
- Requires-Dist: pytest_cases; extra == "all"
89
- Requires-Dist: pytest-benchmark; extra == "all"
90
- Requires-Dist: sphinx; extra == "all"
91
- Requires-Dist: sphinx_design; extra == "all"
92
- Requires-Dist: sphinx_gallery; extra == "all"
93
- Requires-Dist: sphinx_rtd_theme; extra == "all"
94
- Requires-Dist: pydata-sphinx-theme; extra == "all"
95
- Requires-Dist: numpydoc; extra == "all"
96
- Requires-Dist: memory_profiler; extra == "all"
97
- Requires-Dist: ipython; extra == "all"
98
- Requires-Dist: lightgbm; extra == "all"
99
- Dynamic: license-file
100
-
101
- # EEG-Dash
102
-
103
- [![PyPI version](https://img.shields.io/pypi/v/eegdash)](https://pypi.org/project/eegdash/)
104
- [![Docs](https://img.shields.io/badge/docs-stable-brightgreen.svg)](https://sccn.github.io/eegdash)
105
-
106
- [![License: GPL-2.0-or-later](https://img.shields.io/badge/License-GPL--2.0--or--later-blue.svg)](LICENSE)
107
- [![Python versions](https://img.shields.io/pypi/pyversions/eegdash.svg)](https://pypi.org/project/eegdash/)
108
- [![Downloads](https://pepy.tech/badge/eegdash)](https://pepy.tech/project/eegdash)
109
- <!-- [![Coverage](https://img.shields.io/codecov/c/github/sccn/eegdash)](https://codecov.io/gh/sccn/eegdash) -->
110
-
111
- To leverage recent and ongoing advancements in large-scale computational methods and to ensure the preservation of scientific data generated from publicly funded research, the EEG-DaSh data archive will create a data-sharing resource for MEEG (EEG, MEG) data contributed by collaborators for machine learning (ML) and deep learning (DL) applications.
112
-
113
- ## Data source
114
-
115
- The data in EEG-DaSh originates from a collaboration involving 25 laboratories, encompassing 27,053 participants. This extensive collection includes MEEG data, which is a combination of EEG and MEG signals. The data is sourced from various studies conducted by these labs, involving both healthy subjects and clinical populations with conditions such as ADHD, depression, schizophrenia, dementia, autism, and psychosis. Additionally, data spans different mental states like sleep, meditation, and cognitive tasks. In addition, EEG-DaSh will incorporate a subset of the data converted from NEMAR, which includes 330 MEEG BIDS-formatted datasets, further expanding the archive with well-curated, standardized neuroelectromagnetic data.
116
-
117
- ## Featured data
118
-
119
- The following HBN datasets are currently featured on EEGDash. Documentation about these datasets is available [here](https://neuromechanist.github.io/data/hbn/).
120
-
121
- | DatasetID | Participants | Files | Sessions | Population | Channels | Is 10-20? | Modality | Size |
122
- |---|---|---|---|---|---|---|---|---|
123
- | [ds005505](https://nemar.org/dataexplorer/detail?dataset_id=ds005505) | 136 | 5393 | 1 | Healthy | 129 | other | Visual | 103 GB |
124
- | [ds005506](https://nemar.org/dataexplorer/detail?dataset_id=ds005506) | 150 | 5645 | 1 | Healthy | 129 | other | Visual | 112 GB |
125
- | [ds005507](https://nemar.org/dataexplorer/detail?dataset_id=ds005507) | 184 | 7273 | 1 | Healthy | 129 | other | Visual | 140 GB |
126
- | [ds005508](https://nemar.org/dataexplorer/detail?dataset_id=ds005508) | 324 | 13393 | 1 | Healthy | 129 | other | Visual | 230 GB |
127
- | [ds005510](https://nemar.org/dataexplorer/detail?dataset_id=ds005510) | 135 | 4933 | 1 | Healthy | 129 | other | Visual | 91 GB |
128
- | [ds005512](https://nemar.org/dataexplorer/detail?dataset_id=ds005512) | 257 | 9305 | 1 | Healthy | 129 | other | Visual | 157 GB |
129
- | [ds005514](https://nemar.org/dataexplorer/detail?dataset_id=ds005514) | 295 | 11565 | 1 | Healthy | 129 | other | Visual | 185 GB |
130
-
131
- A total of [246 other datasets](datasets.md) are also available through EEGDash.
132
-
133
- ## Data format
134
-
135
- EEGDash queries return a **Pytorch Dataset** formatted to facilitate machine learning (ML) and deep learning (DL) applications. PyTorch Datasets are the best format for EEGDash queries because they provide an efficient, scalable, and flexible structure for machine learning (ML) and deep learning (DL) applications. They allow seamless integration with PyTorch’s DataLoader, enabling efficient batching, shuffling, and parallel data loading, which is essential for training deep learning models on large EEG datasets.
136
-
137
- ## Data preprocessing
138
-
139
- EEGDash datasets are processed using the popular [BrainDecode](https://braindecode.org/stable/index.html) library. In fact, EEGDash datasets are BrainDecode datasets, which are themselves PyTorch datasets. This means that any preprocessing possible on BrainDecode datasets is also possible on EEGDash datasets. Refer to [BrainDecode](https://braindecode.org/stable/index.html) tutorials for guidance on preprocessing EEG data.
140
-
141
- ## EEG-Dash usage
142
-
143
- ### Install
144
- Use your preferred Python environment manager with Python > 3.9 to install the package.
145
- * To install the eegdash package, use the following command: `pip install eegdash`
146
- * To verify the installation, start a Python session and type: `from eegdash import EEGDash`
147
-
148
- ### Data access
149
-
150
- To use the data from a single subject, enter:
151
-
152
- ```python
153
- from eegdash import EEGDashDataset
154
-
155
- ds_NDARDB033FW5 = EEGDashDataset(
156
- {"dataset": "ds005514", "task":
157
- "RestingState", "subject": "NDARDB033FW5"},
158
- cache_dir="."
159
- )
160
- ```
161
-
162
- This will search and download the metadata for the task **RestingState** for subject **NDARDB033FW5** in BIDS dataset **ds005514**. The actual data will not be downloaded at this stage. Following standard practice, data is only downloaded once it is processed. The **ds_NDARDB033FW5** object is a fully functional BrainDecode dataset, which is itself a PyTorch dataset. This [tutorial](https://github.com/sccn/EEGDash/blob/develop/notebooks/tutorial_eoec.ipynb) shows how to preprocess the EEG data, extracting portions of the data containing eyes-open and eyes-closed segments, then perform eyes-open vs. eyes-closed classification using a (shallow) deep-learning model.
163
-
164
- To use the data from multiple subjects, enter:
165
-
166
- ```python
167
- from eegdash import EEGDashDataset
168
-
169
- ds_ds005505rest = EEGDashDataset(
170
- {"dataset": "ds005505", "task": "RestingState"}, target_name="sex", cache_dir=".
171
- )
172
- ```
173
-
174
- This will search and download the metadata for the task 'RestingState' for all subjects in BIDS dataset 'ds005505' (a total of 136). As above, the actual data will not be downloaded at this stage so this command is quick to execute. Also, the target class for each subject is assigned using the target_name parameter. This means that this object is ready to be directly fed to a deep learning model, although the [tutorial script](https://github.com/sccn/EEGDash/blob/develop/notebooks/tutorial_sex_classification.ipynb) performs minimal processing on it, prior to training a deep-learning model. Because 14 gigabytes of data are downloaded, this tutorial takes about 10 minutes to execute.
175
-
176
- ### Automatic caching
177
-
178
- EEGDash automatically caches the downloaded data in the .eegdash_cache folder of the current directory from which the script is called. This means that if you run the tutorial [scripts](https://github.com/sccn/EEGDash/tree/develop/notebooks), the data will only be downloaded the first time the script is executed.
179
-
180
- ## Education -- Coming soon...
181
-
182
- We organize workshops and educational events to foster cross-cultural education and student training, offering both online and in-person opportunities in collaboration with US and Israeli partners. Events for 2025 will be announced via the EEGLABNEWS mailing list. Be sure to [subscribe](https://sccn.ucsd.edu/mailman/listinfo/eeglabnews).
183
-
184
- ## About EEG-DaSh
185
-
186
- EEG-DaSh is a collaborative initiative between the United States and Israel, supported by the National Science Foundation (NSF). The partnership brings together experts from the Swartz Center for Computational Neuroscience (SCCN) at the University of California San Diego (UCSD) and Ben-Gurion University (BGU) in Israel.
187
-
188
- ![Screenshot 2024-10-03 at 09 14 06](https://github.com/user-attachments/assets/327639d3-c3b4-46b1-9335-37803209b0d3)
189
-
190
-
191
-
192
-
@@ -1,28 +0,0 @@
1
- eegdash/__init__.py,sha256=PQbCZHVxYTBpYOu1wIrGntJNKXt7bK0qh5kq8mb3ufo,238
2
- eegdash/api.py,sha256=OqOZ27GYURSAZwTQHSs0QcW_6Mq1i_5XHP6KMcihb8A,27295
3
- eegdash/data_config.py,sha256=OS6ERO-jHrnEOfMJUehY7ieABdsRw_qWzOKJ4pzSfqw,1323
4
- eegdash/data_utils.py,sha256=8Jb_94uVbdknNPpx3GBl4dCDYUIJNzl3zkLwbfH90N4,26052
5
- eegdash/dataset.py,sha256=GVELU-eXq9AQDzOeg6Lkykd-Pctyn42e5UEcAV0Go4s,2348
6
- eegdash/mongodb.py,sha256=GD3WgA253oFgpzOHrYaj4P1mRjNtDMT5Oj4kVvHswjI,2006
7
- eegdash/preprocessing.py,sha256=7S_TTRKPKEk47tTnh2D6WExBt4cctAMxUxGDjJqq5lU,2221
8
- eegdash/utils.py,sha256=wU9CBQZLW_LIQIBwhgQm5bU4X-rSsVNPdeF2iE4QGJ4,410
9
- eegdash/features/__init__.py,sha256=BXNhjvL4_SSFAY1lcP9nyGpkbJNtoOMH4AHlF6OyABo,4078
10
- eegdash/features/datasets.py,sha256=kU1DO70ArSIy-LF1hHD2NN4iT-kJrI0mVpSkyV_OSeI,18301
11
- eegdash/features/decorators.py,sha256=v0qaJz_dcX703p1fvFYbAIXmwK3d8naYGlq7fRVKn_w,1313
12
- eegdash/features/extractors.py,sha256=H7h6tP3dKoRcjDJpWWAo0ppmokCq5QlhqMcehYwYV9s,6845
13
- eegdash/features/inspect.py,sha256=PmbWhx5H_WqpnorUpWONUSkUtaIHkZblRa_Xyk7Szyc,1569
14
- eegdash/features/serialization.py,sha256=snXuHVd0CoT2ese0iWi5RwZrVHCGc0oCZ8-SXqGY88I,2848
15
- eegdash/features/utils.py,sha256=eM6DdyOpdVfNh7dSPykJ0WaTDtaGvkCQWAmW0G8v60Y,3784
16
- eegdash/features/feature_bank/__init__.py,sha256=YsMXLC1FEtHL3IEw9pYw1fc5IY0x_hr2qWQowI5gZj8,2991
17
- eegdash/features/feature_bank/complexity.py,sha256=iy9uaLInsYdxKZlXHTWlgEpP9fVI-v9TqLGfnS15-Eg,3258
18
- eegdash/features/feature_bank/connectivity.py,sha256=bQ6KlxWm5GNpCS9ypLqBUr2L171Yq7wpBQT2tRQKTZ4,2159
19
- eegdash/features/feature_bank/csp.py,sha256=jKPrmqBj7FliybNbg035cVZddvVSkhk9OazcscDpipU,3303
20
- eegdash/features/feature_bank/dimensionality.py,sha256=j_Ds71Y1AbV2uLFQj8EuXQ4kzofLBlQtPV5snMkF7i4,3965
21
- eegdash/features/feature_bank/signal.py,sha256=3Tb8z9gX7iZipxQJ9DSyy30JfdmW58kgvimSyZX74p8,3404
22
- eegdash/features/feature_bank/spectral.py,sha256=bNB7skusePs1gX7NOU6yRlw_Gr4UOCkO_ylkCgybzug,3319
23
- eegdash/features/feature_bank/utils.py,sha256=DGh-Q7-XFIittP7iBBxvsJaZrlVvuY5mw-G7q6C-PCI,1237
24
- eegdash-0.3.3.dev61.dist-info/licenses/LICENSE,sha256=asisR-xupy_NrQBFXnx6yqXeZcYWLvbAaiETl25iXT0,931
25
- eegdash-0.3.3.dev61.dist-info/METADATA,sha256=W_KFw8Hn3ekBmHKfVPzX-WS3Ylv3Xkn_yWbauePYbOY,11483
26
- eegdash-0.3.3.dev61.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
27
- eegdash-0.3.3.dev61.dist-info/top_level.txt,sha256=zavO69HQ6MyZM0aQMR2zUS6TAFc7bnN5GEpDpOpFZzU,8
28
- eegdash-0.3.3.dev61.dist-info/RECORD,,
@@ -1,23 +0,0 @@
1
- GNU General Public License
2
-
3
- Copyright (C) 2024-2025
4
-
5
- Young Truong, UCSD, dt.young112@gmail.com
6
- Arnaud Delorme, UCSD, adelorme@ucsd.edu
7
- Aviv Dotan, BGU, avivdot@bgu.post.ac.il
8
- Oren Shriki, BGU, shrikio@bgu.ac.il
9
- Bruno Aristimunha, b.aristimunha@gmail.com
10
-
11
- This program is free software; you can redistribute it and/or modify
12
- it under the terms of the GNU General Public License as published by
13
- the Free Software Foundation; either version 2 of the License, or
14
- (at your option) any later version.
15
-
16
- This program is distributed in the hope that it will be useful,
17
- but WITHOUT ANY WARRANTY; without even the implied warranty of
18
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
- GNU General Public License for more details.
20
-
21
- You should have received a copy of the GNU General Public License
22
- along with this program; if not, write to the Free Software
23
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1.07 USA