Skip to content

Commit

Permalink
created and saved RNN and CNN data from MFDFA, assigned Data Loading …
Browse files Browse the repository at this point in the history
…ipynb as the dataframe creator and saver for all analysis, plotted and saved MFDFA data, calculated and saved hurst exp data, plotted hurst exp topo map
  • Loading branch information
MetaverseCrowdsource committed Aug 3, 2023
1 parent d247a52 commit c866373
Show file tree
Hide file tree
Showing 11 changed files with 6,904 additions and 2,955 deletions.
289 changes: 140 additions & 149 deletions Recurrent Neural Network with Long Short-Term Memory layers.ipynb

Large diffs are not rendered by default.

Large diffs are not rendered by default.

765 changes: 447 additions & 318 deletions .ipynb_checkpoints/Data Loading and Variable Assigning-checkpoint.ipynb

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4,359 changes: 2,977 additions & 1,382 deletions .ipynb_checkpoints/Exploration and Analysis EEG-checkpoint.ipynb

Large diffs are not rendered by default.

1,440 changes: 1,084 additions & 356 deletions .ipynb_checkpoints/Multifractal Analysis-checkpoint.ipynb

Large diffs are not rendered by default.

624 changes: 474 additions & 150 deletions Data Loading and Variable Assigning.ipynb

Large diffs are not rendered by default.

353 changes: 122 additions & 231 deletions Exploration and Analysis EEG.ipynb

Large diffs are not rendered by default.

1,440 changes: 1,084 additions & 356 deletions Multifractal Analysis.ipynb

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,17 @@ This research could potentially contribute to the ambitious goal of directly sti

This research could contribute significantly to the field of decoding and encoding sensory perceptions in the human brain. The proposed model, which integrates chaos theory, dynamical systems theory, and a neural network stack, could provide a robust and comprehensive tool for understanding how the brain responds to tES. Such an understanding is critical for decoding brain activity associated with sensual perception. Specifically, the proposed use of transfer entropy to measure causal relationships within the brain could provide unique insights into how different sensory regions interact and coordinate to produce perceptions. Once these perceptions are decoded[5], it becomes theoretically possible to encode similar patterns back into the brain. The development of a predictive model capable of accurately capturing these dynamics would be a pivotal step towards this goal. Thus, while the immediate focus of the research is predicting EEG effects of tES, the methodologies and insights derived from the work have broader implications and could be foundational for future efforts aimed at decoding and encoding sensual perceptions in the brain.

encoding sensual perceptions in the brain.

<br>
<br>
Choose the eeg data file and create your dataframes with the steps here, **[here](https://github.com/Metaverse-Crowdsource/EEG-tES-Chaos-Neural-Net/blob/main/Data%20Loading%20and%20Variable%20Assigning.ipynb)**.
<br>
<br>

<h1 align="center">References</h1>


[1] L. Smirnova et al., "Organoid Intelligence (OI): The New Frontier in Biocomputing and Intelligence-in-a-Dish," Frontiers in Science, vol. 7, pp. 0, 2023.

[2] A. E. Rochford et al., "Functional Neurological Restoration of Amputated Peripheral Nerve Using Biohybrid Regenerative Bioelectronics," Science Advances, vol. 9, no. 12, pp. eadd8162, 2023.
Expand Down
13 changes: 13 additions & 0 deletions data_loading_processing
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
digraph {
LoadData [label="Load Data" fontsize=12 shape=rect]
FillNull [label="Fill Null Values" fontsize=12 shape=rect]
FilterUnwanted [label="Filter Unwanted Channels" fontsize=12 shape=rect]
TransposeEEG [label="Transpose EEG Data" fontsize=12 shape=rect]
DataFrameEEG [label="Create EEG DataFrame" fontsize=12 shape=rect]
DataFrameTriggers [label="Create Triggers DataFrame" fontsize=12 shape=rect]
LoadData -> FillNull [label="Load Data" fontsize=10]
FillNull -> FilterUnwanted [label="Fill Null Values" fontsize=10]
FilterUnwanted -> TransposeEEG [label="Filter Unwanted Channels" fontsize=10]
TransposeEEG -> DataFrameEEG [label="Transpose EEG Data" fontsize=10]
DataFrameEEG -> DataFrameTriggers [label="Create EEG DataFrame" fontsize=10]
}

0 comments on commit c866373

Please sign in to comment.