eegunity 0.5.4__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 (37) hide show
  1. eegunity/__init__.py +3 -0
  2. eegunity/_share_attributes.py +8 -0
  3. eegunity/modules/__init__.py +0 -0
  4. eegunity/modules/batch/__init__.py +1 -0
  5. eegunity/modules/batch/eeg_batch.py +1550 -0
  6. eegunity/modules/batch/eeg_scores_modified_mne.py +59 -0
  7. eegunity/modules/batch/eeg_scores_shady.py +508 -0
  8. eegunity/modules/batch/method_mixin_epoch.py +709 -0
  9. eegunity/modules/batch/utils.py +10 -0
  10. eegunity/modules/correction/__init__.py +1 -0
  11. eegunity/modules/correction/eeg_correction.py +277 -0
  12. eegunity/modules/llm_booster/__init__.py +0 -0
  13. eegunity/modules/llm_booster/eeg_llm_booster.py +11 -0
  14. eegunity/modules/llm_booster/eeg_llm_des_parser.py +334 -0
  15. eegunity/modules/llm_booster/eeg_llm_file_parser.py +122 -0
  16. eegunity/modules/parser/__init__.py +1 -0
  17. eegunity/modules/parser/eeg_parser.py +935 -0
  18. eegunity/modules/parser/eeg_parser_config.py +83 -0
  19. eegunity/modules/parser/eeg_parser_csv.py +161 -0
  20. eegunity/modules/parser/eeg_parser_mat.py +279 -0
  21. eegunity/resources/__init__.py +0 -0
  22. eegunity/resources/combined_montage.json +5237 -0
  23. eegunity/unifieddataset.py +160 -0
  24. eegunity/utils/__init__.py +5 -0
  25. eegunity/utils/channel_align_raw.py +86 -0
  26. eegunity/utils/con_udatasets.py +41 -0
  27. eegunity/utils/h5.py +26 -0
  28. eegunity/utils/handle_errors.py +40 -0
  29. eegunity/utils/log_processing.py +8 -0
  30. eegunity/utils/normalize.py +37 -0
  31. eegunity/utils/pipeline.py +39 -0
  32. eegunity/utils/split_hdf5_file.py +115 -0
  33. eegunity-0.5.4.dist-info/METADATA +63 -0
  34. eegunity-0.5.4.dist-info/RECORD +37 -0
  35. eegunity-0.5.4.dist-info/WHEEL +5 -0
  36. eegunity-0.5.4.dist-info/licenses/LICENSE +21 -0
  37. eegunity-0.5.4.dist-info/top_level.txt +1 -0
eegunity/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ from .unifieddataset import UnifiedDataset
2
+ from .modules.parser.eeg_parser import get_data_row
3
+ from .utils import *
@@ -0,0 +1,8 @@
1
+ class _UDatasetSharedAttributes:
2
+ def __init__(self):
3
+ self._shared_attr = {} # Use instance variables to store shared attributes
4
+ def get_shared_attr(self):
5
+ return self._shared_attr
6
+
7
+ def set_shared_attr(self, value):
8
+ self._shared_attr.update(value)
File without changes
@@ -0,0 +1 @@
1
+ from .eeg_batch import EEGBatch