fs2CyborgPreprocessing
Real-time preprocessing of raw electrode voltage stream, using functional streams 2 (fs2) in Scala.
-
Example 1 converts an Int stream of pV of an electrode into noise reduced PSD stream in the range 296 - 3000 Hz . Heavy preprocessed signal.
-
Example 2 converts an Int stream of pV of an electrode into a 6 second 80 % overlapping sliding window count of action potentials in individual frequency bins from Power Spectral Densities (PSDs) in the range 296 - 3000 Hz . Lightweight preprocessed signal, good for PCA models.
Opposed to Example 1, the preprocessed data in Example 2 is lightweight. One 7 minute raw electrode is estimated to take up 2.2 GB / 60 ~= 40 MB storage space. The preprocessed PSDs in Example 1 took 105.5 MB, while in Example 2 only 476.7 KB .
Both examples rely on pre-computed noise tresholds for the selected electrode (from other code). This code assumes 10000 Hz sampling rate on the raw electrode voltage stream. Computation can be speeded up, or throttled to real-time speed when reading data from a file. It can either save the preprocessed stream to a file, or send it further over internet via a TCP socket server. The code should be straight forward to implement in SHODAN for real-time preprocessing in the Cyborg project.
Audacity, Python matplotlib and The Unscrambler X was used for the plots in the examples.
Dependencies:
- Forked scala signal processing library scalasignal. Prebuilt jar in lib folder.
- The rest of the dependencies should be pulled automaticly with scala build tool (sbt) based on the build.sbt file.
How to run:
- Make shure scala and scala build tool (sbt) is installed. Linux is preferred.
- Clone the repository
git clone https://github.com/ivartz/fs2CyborgPreprocessing
- Go to the folder
cd fs2CyborgPreprocessing
- Make shure all file paths are adjusted correctly in Main.scala . Also make shure the relevant preprocessing operations is selected in the code (commented/uncommented). The preprocessing steps Main.scala are well documented in comments. The first lines of the code are preprequisites for multithreading: Thread pool factory.
- Run the program
sbt run
Example 1: Complete noise reduced PSD stream.
-
Select electrode 87 from MEA2 Dopey experiment #2 (2017-03-20), based on offline analysis in Python. Raw data is converted to audio for visualization (not this code).
-
Extract noise segments, based on PC1 score from PCA of #2 raw data (not this code).
-
Construct noise tresholds for the PSD to be used in the real-time preprocessing. Only the frequency range 296 - 3000 Hz is used later (not this code).
-
Compute PSDs in intermediate steps. Line plot of a matrix of computed PSDs along the time axis is shown for completeness of the example.
-
Use noise tresholds to construct varying decibel attenuation gains over time. Max attenuation is fixed, and set to -48 db in this example. Smooth varying attenuation gains are enshured by using a 4. order IIR Butterworth filter with cutoff 6 Hz .
-
Attenuate the raw PSDs with the attenuation gains, resulting in a 40 Hz preprocessed PSD stream.
Example 2: Remebering treshold exceeds for last 6 seconds, outputting in intervals of 1.2 seconds. Builds varying frequency-to-above-treshold-counts shapes that is proposed to be good for PCA models. It is an attempt to convert sliding window history of action potentials (timing information) to amplitude information in aggregated shapes. It is proposed that multivariate analysis on this preprocessed data, such as PCA with its linearly independent basis tranformation, can capture timing patterns for the last 6 seconds in action potentials across different frequencies in this way.
-
Select electrode 87 from MEA2 Dopey experiment #2 (2017-03-20), based on offline analysis in Python. Raw data is converted to audio for visualization (not this code).
-
Extract noise segments, based on PC1 score from PCA of #2 raw data (not this code).
-
Construct noise tresholds for the PSD to be used in the real-time preprocessing. Only the frequency range 296 - 3000 Hz is used later (not this code).
-
Compute PSDs in intermediate steps. Line plot of a matrix of computed PSDs along the time axis is shown for completeness of the example.
-
Use noise tresholds to count each time an amplitude in the raw PSD exceeds the trehold in a given bin. This is done in a sliding window of 6 seconds, with 80 % overlap. This results in a stream of aggregated counts each 1.2 seconds (0.83 Hz stream). From the following figures, it is seen that burst nr. 4 builds up a larger amplitude because it durated a little bit longer than most of the other bursts. This is the essence in this preprocessing. It is proposed that these effects will be more evident in more adult cultures when comparing APs over different freqiency bins.