Note
Go to the end to download the full example code.
Adding New Features#
import py_neuromodulation as nm
import numpy as np
from typing import Iterable
In this example we will demonstrate how a new feature can be added to the existing feature pipeline.
This can be done by creating a new feature class that implements the protocol class NMFeature
and registering it with the AddCustomFeature()
function.
Let’s create a new feature class called ChannelMean that calculates the mean signal for each channel.
We can optinally make it inherit from NMFeature
but as long as it has an adequate constructor
and a calc_feature method with the appropriate signatures it will work.
The __init__()
method should take the settings, channel names and sampling frequency as arguments.
The calc_feature method should take the data and a dictionary of features as arguments and return the updated dictionary.
class ChannelMean:
def __init__(
self, settings: nm.NMSettings, ch_names: Iterable[str], sfreq: float
) -> None:
# If required for feature calculation, store the settings,
# channel names and sampling frequency (optional)
self.settings = settings
self.ch_names = ch_names
self.sfreq = sfreq
# Here you can add any additional initialization code
# For example, you could store parameters for the functions\
# used in the calc_feature method
self.feature_name = "channel_mean"
def calc_feature(self, data: np.ndarray) -> dict:
# First, create an empty dictionary to store the calculated features
feature_results = {}
# Here you can add any feature calculation code
# This example simply calculates the mean signal for each channel
ch_means = np.mean(data, axis=1)
# Store the calculated features in the feature_results dictionary
# Be careful to use a unique keyfor each channel and metric you compute
for ch_idx, ch in enumerate(self.ch_names):
feature_results[f"{self.feature_name}_{ch}"] = ch_means[ch_idx]
# Return the updated feature_results dictionary to the stream
return feature_results
nm.add_custom_feature("channel_mean", ChannelMean)
Now we can instantiate settings and observe that the new feature has been added to the list of features
settings = nm.NMSettings() # Get default settings
settings.features
{'bandpass_filter': False,
'bispectrum': False,
'bursts': True,
'channel_mean': True,
'coherence': False,
'fft': True,
'fooof': False,
'linelength': True,
'mne_connectivity': False,
'nolds': False,
'raw_hjorth': True,
'return_raw': True,
'sharpwave_analysis': True,
'stft': False,
'welch': True}
Let’s create some artificial data to demonstrate the feature calculation.
N_CHANNELS = 5
N_SAMPLES = 10000 # 10 seconds of random data at 1000 Hz sampling frequency
data = np.random.random([N_CHANNELS, N_SAMPLES])
stream = nm.Stream(
sfreq=1000,
data=data,
settings = settings,
sampling_rate_features_hz=10,
verbose=False,
)
feature_df = stream.run()
columns = [col for col in feature_df.columns if "channel_mean" in col]
feature_df[columns]
Remove feature so that it does not interfere with other examples
nm.remove_custom_feature("channel_mean")
Total running time of the script: (0 minutes 0.849 seconds)