Figures
Abstract
Neurostimulation and neural recording are crucial to develop neuroprostheses that can restore function to individuals living with disabilities. While neurostimulation has been successfully translated into clinical use for several applications, it remains challenging to robustly collect and interpret neural recordings, especially for chronic applications. Nerve cuff electrodes offer a viable option for recording nerve signals, with long-term implantation success. However, nerve cuff electrodes’ signals have low signal-to-noise ratios, resulting in reduced selectivity between neural pathways. The objective of this study was to determine whether deep learning techniques, specifically networks tailored for time series applications, can increase the recording selectivity achievable using multi-contact nerve cuff electrodes. We compared several neural network architectures, the impact and trade-off of window length on classification performance, and the benefit of data augmentation. Evaluation was carried out using a previously collected dataset of 56-channel nerve cuff recordings from the sciatic nerve of Long-Evans rats, which included afferent signals evoked using three types of mechanical stimuli. Through this study, the best model achieved an accuracy of 0.936 ± 0.084 and an F1-score of 0.917 ± 0.103, using 50 ms windows of data and an augmented training set. These results demonstrate the effectiveness of applying CNNs designed for time-series data to peripheral nerve recordings, and provide insights into the relationship between window duration and classification performance in this application.
Citation: Gill APS, Zariffa J (2024) Time series classification of multi-channel nerve cuff recordings using deep learning. PLoS ONE 19(3): e0299271. https://doi.org/10.1371/journal.pone.0299271
Editor: Noman Naseer, Air University, PAKISTAN
Received: September 15, 2023; Accepted: February 6, 2024; Published: March 12, 2024
Copyright: © 2024 Gill, Zariffa. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited.
Data Availability: The dataset used in this study is available in the University of Toronto Dataverse repository: https://borealisdata.ca/dataset.xhtml?persistentId=doi:10.5683/SP3/JRZDDR.
Funding: This work was supported in part by the Natural Sciences and Engineering Research Council of Canada, through grants RGPIN-2014-05498 and RGPIN-2020-06246 to JZ, and an Undergraduate Student Research Award to AG. The funders had no role in study design, data collection and analysis, decision to publish, or preparation of the manuscript.
Competing interests: The authors have declared that no competing interests exist.
1. Introduction
Neurological injuries and amputation may cause significant loss of motor function, resulting in deterioration of the quality of life for affected individuals [1, 2]. Neuroprosthetics and neuromodulation devices seek to restore the functionality of movements and improve the quality of life for affected individuals. This is achieved through stimulation of the nervous system, known as neurostimulation. Some applications of neurostimulation include the restoring the sense of touch to prosthesis users [3–5] and functional electrical stimulation (FES) for movement restoration [6–8].
To improve the effectiveness of implanted FES systems, it is desirable to perform neurostimulation using an implantable closed-loop control device. A closed-loop system is ideal as it integrates information about the current state of the body and the environment. This allows for closed-loop systems to adapt to unexpected perturbations and produce robust and smooth movements compared to open-loop systems [6, 9, 10]. The sensory information required for closed-loop control is contained in afferent nerves and can be recorded using peripheral nerve interfaces.
Categories of peripheral nerve interfaces include extraneural electrodes, intraneural electrodes, and regenerative electrodes [11, 12]. Increasing the invasiveness of an electrode increases the signal-to-noise ratio (SNR) of the signal and places electrical contacts closer to axons, increasing the functional selectivity of the recordings. However, higher invasiveness entails a greater likelihood of damage to the neural tissue, leading to a potential decrease in stability for long-term implantation, which is a limitation when designing implantable closed-loop control devices. Extraneural electrodes are the least invasive, as they lie outside the nerve, but provide lower SNR and signal selectivity. Increasing the information that can be extracted from extraneural electrodes is a possible avenue towards achieving a better trade-off between invasiveness and selectivity. To this end, multi-channel extraneural recording involves collecting information using multiple extraneural contacts and increases the potential information that can be extracted through the corresponding signals. In particular, deep learning excels at leveraging large amounts of complex and noisy data, and offers an opportunity to obtain more precise and reliable information from peripheral nerve recordings.
Several signal processing algorithms have been applied to analyse and interpret recorded multi-channel peripheral nerve signals [13]. Recently, Koh et al. saw success in applying a 2-dimensional convolutional neural network (2D CNN), named Extraneural Spatiotemporal Compound Action Potential Extraction Technique Network (ESCAPE-NET), to this task [14, 15]. ESCAPE-NET leverages both the spatial arrangement of the electrodes and the temporal nature of the data recorded by each electrode to create a spatiotemporal signature (a 2D matrix with contacts in one dimension and time samples in the other). Arranging the recordings in this fashion allows for the use of 2D CNNs to learn both spatial and temporal relationships in the data, and classify individual naturally evoked compound action potentials (nCAPs) according to the neural pathway where they originated.
While CNNs originally gained widespread application for processing 2D image and video data, specialized architectures have also been proposed that are adapted to time-series data through the use of 1-dimensional kernels [16]. Electroneurography (ENG) is fundamentally time-series data, and therefore an appropriate target for 1D CNN architectures, as well as for transformer models for time-series data. An interesting feature of this type of approach is the ability to integrate various timescales of data. While ESCAPE-NET emphasizes the spatial arrangement of the data, it does not integrate multiple timescales as effectively. This limitation could potentially be addressed through the use of 1D CNN or transformer architectures designed for time series data.
The objective of this study was to leverage the time series nature of multi-channel ENG by implementing, modifying, and evaluating various multi-scale 1D CNN and transformer architectures’ ability to classify peripheral nerve extraneural signals based on the pathway of origin.
2 Materials and methodology
2.1 Dataset
The dataset used in this study was collected previously by our group. A description of the protocol can be found in [15]. Briefly, ENG signals were collected from the sciatic nerve of Long-Evans rats using a 56-contact spiral polyimide nerve cuff electrode (CorTec GmbH, Freiburg, Germany), 23 mm in length and 1mm in diameter. The nerve cuff configuration consisted of 7 evenly spaced rings each with 8 contacts. Data were acquired using a neural acquisition board (RHD2000, Intan Technologies, USA) at a frequency of 30 kHz. Three types of mechanical stimuli were applied to the rat’s hindpaw: dorsiflexion, plantarflexion, and pricking of the heel using a Von Frey monofilament (300 g). These stimuli evoke afferent activity in the tibial, peroneal, and sural fascicles of the sciatic nerve, respectively, thereby producing different patterns of bioelectric activity at the surface of the nerve [17–19]. Dorsiflexion and plantarflexion signals were recorded by manually dorsiflexing and plantarflexing the rat’s foot at approximately 60° in sync with a metronome set to a tempo of 70 beats per minute. On the first beat, the foot was moved to the dorsiflexion/plantarflexion position, then returned to the neutral position on the second beat. For recording heel prick signals, the Von Frey Monofilament was pricked in tune with a metronome similar to dorsiflexion and plantarflexion. On the first beat, the heel was pricked and held until the second beat. 100 trials of each stimulation were recorded. The stimulus applied served as a ground truth signal for the classifiers, whose task was to associate a window of recorded signal with the correct stimulus type.
The experimental procedures were approved by the Animal Care Committee of the University of Toronto and all experiments were performed in accordance with the Animal Care Committee’s guidelines.
2.2 Preprocessing
The raw data were preprocessed off-line in MATLAB to facilitate the detection of nCAPs in the neural recordings. First, a tripole reference was applied to the collected signals, with the average of the two outermost rings serving as the reference. A tripole reference helps to reduce artefacts from bioelectric sources external to the cuff while preserving signals that result from the propagation of action potentials through the nerve [20, 21]. Next bandpass filtering was applied using a 6th order Butterworth filter with a 1–3 kHz passband, to remove signal content unrelated to the neural activity of interest. Following this, a delay-and-add operation was used, following the methodology of velocity selective recording (VSR). VSR allows for the discrimination of CAPs based on both the direction and conduction velocity of the neural signal [22–24]. To this end, averaged recordings from each ring of contacts were shifted by a delay and then summed, resulting in constructive interference when the delay was consistent with the propagation velocity of the nCAPs and the electrode spacing. The delay-and-add operation transformed the multi-channel data into a single signal in which the SNR of the target signals was increased, to facilitate the detection of nCAPs. A threshold was then applied, using the median absolute deviation estimate approach (Eq 1) [25].
The delay-and-add step was used only for nCAP detection. Data was then extracted from the pre-processed multi-channel signals for the following steps. The detected nCAP locations were treated as the center of the signal windows to use in the classifier evaluations, with n time samples taken after the spike peak and n−-1 time samples taken before the spike peak. This yielded signals that were 2n samples long. Three different datasets were prepared, with windows of length 2250 samples, 1500 samples, and 100 samples. The purpose of this comparison was to characterize the relationship between classification accuracy and window length, which has implications for system latency and the likelihood of overlap between the activity of multiple neural pathways. 100 samples is the length of input used by ESCAPE-NET, and therefore enables a direct comparison between architectures. Longer windows may enable time-series models to capture information in longer time scales, at the cost of decreased temporal resolution. A depiction of the processed signal can be found in Fig 1.
Columns correspond to different rings of contacts in the nerve cuff electrode, and rows correspond to contacts within a ring.
Windows larger than 2250 samples were not selected as further increasing window size increases model size, model training time, and the latency of the model.
2.3 Data augmentation
Three types of data augmentation were applied: zeroing out parts of the signals, mixing and matching signals, and shifting signals as shown in Fig 2 [26]. To zero out parts of the signals, up to 10% of the signal was set to zero in either one or two sections. Mixing and matching signals involved taking the middle one third of a signal and replacing it with the middle one third of a different signal of the same class. Shifting the signal was completed by randomly moving the signal up to 5% of the signal’s length forward or backward.
These three methods were selected as they are unlikely to impact the classification of the signal. The main concern was introducing additional spikes, which may potentially occur when using different data augmentation techniques such as jittering, magnitude warping, or flipping [26].
Data augmentation was performed only on the training and validation data, after separating out the testing set for each rat. For the training and validation set of each rat, data augmentation was applied to increase the number of samples per class to 1.5 times the class type with the most sample. This prevented class imbalance from biasing the model’s decisions.
2.4 Architectures
Based on literature research, three architectures were selected, optimized, and evaluated. All architectures were implemented in PyTorch. The first architecture is Multi-Scale Convolution Block (MSCB) which drew inspiration from Roy [27]. Roy investigated the use of a multi-scale 1D CNN for the classification of electroencephalogram (EEG) motor imagery signals into one of three classes [27]. This network was selected for its high performance, as it achieved 93.4% classification on the motor imagery classification task [27]. Furthermore, the EEG data collected for Roy’s study is collected using three electrodes placed on the head which is similar in structure to the dataset used in this study.
The second architecture was InceptionTime [28]. InceptionTime was selected since it was proven to have performance similar to state-of-the-art models on a standardized time-series dataset (UCR), and for its ability to be extended for multi-variate time series [28].
The third architecture was TARNet [29], selected for two reasons. Firstly, TARNet saw high performance compared to state-of-the-art models on time series classification and reconstruction tasks. Secondly, TARNet is a transformer model instead of a 1D CNN. Transformers have recently seen state-of-the-art success in various domains including computer vision and text generation [30, 31]. This success if attributable to the low inductive bias of transformer models compared to other deep-learning architectures [32]. However, the drawback of low inductive bias is that transformers require larger amounts of data [33].
The MSCB and InceptionTime models are both 1D CNN models. CNNs have higher inductive bias than transformers as they are built around leveraging the convolutional operator and kernels rather than the attention mechanism [34]. As data is limited in this study, higher inductive bias will likely improve model performance. Furthermore, both CNN models were selected for their use of multiple convolution kernel sizes, which can capture different scales of information in the signals [27, 35, 36].
For all models, kernel sizes were chosen based on an initial exploratory analysis and the parameters provided in their respective papers. In all cases, the exploratory analysis demonstrated that increasing the kernel size would eventually lead to a drop in performance. This is expected since increased kernel sizes will increase the number of parameters in the model. Larger models require more data to train; however the dataset size is fixed in this study.
2.4.1 Multi-Scale convolution block (MSCB).
MSCB architectures were implemented in two versions. The first method used a single classification path, involving only one output. The second method includes the addition of an auxiliary classifier. These models are outlined below.
The Single Classifier MSCB architecture network is depicted in Fig 3.
The multi-scale portion of the network occurs from the initial two layers containing four parallel pathways. These pathways are labelled with different colours in Fig 3. The pathways are the small kernel, medium kernel, large kernel, and maxpool pathway. The first three pathways include a convolutional layer followed by a maxpool layer with kernel sizes of 1, 3, and 5 for the small, medium and large pathways respectively. The fourth pathway has a maxpooling (with a kernel size of 3 and a stride of 5) first then a convolution with a kernel size of 24. The outputs of each of these pathways are concatenated along the filter dimension. Following concatenation, the output is fed into a convolutional layer (with a kernel size of 112), followed by a maxpooling layer, and finally into a multi-layer perceptron (MLP) for classification.
The MSCB Auxiliary network is depicted in Fig 4. The auxiliary pathway (shown in purple) is used to improve model performance by adding a classification with less feature extraction and a smaller receptive field.
The MSCB Auxiliary architecture has the same backbone as the Single Classifier MSCB. The difference is the addition of a second classification pathway following the concatenation layer. This is referred to as the auxiliary classifier of the network. The auxiliary pathway takes the output of the concatenation layer and feeds it into a max pooling layer. Then the pooling layer output is flattened and fed into an MLP. After the MLP layers, the outputs of the main pathway and auxiliary pathway are added together, with the output of the auxiliary pathway multiplied by 0.3.
2.4.2 Inceptiontime.
InceptionTime sought to draw inspiration from the Inception network by Google for image classification [28]. The InceptionTime architecture is depicted in Fig 5.
The InceptionTime architecture is built up of an Inception block, followed by a residual connection to the input and finally an MLP. The residual connection takes the input and feeds it into a pointwise convolutional layer followed by a batch normalization layer before adding it to the Inception Block output. The Inception Block is made up of three Inception Modules in series. Each Inception Modules starts by feeding the input into two parallel pathways one containing a pointwise convolutional layer and the other containing a maxpooling layer with kernel size of 3. The output of the convolutional layer is fed into another three parallel convolutions each with different kernel sizes (9, 19, and 39), while the output of the maxpooling layer is fed into a single pointwise convolutional layer. All four of these outputs are concatenated together and then fed into a batch normalization layer. After the residual, an average pooling layer is applied, followed by flattening and feeding into an MLP for classification.
InceptionTime is inherently much deeper than MSCB, making it harder to train. However, InceptionTime can easily integrate auxiliary losses by including classifications following one of the earlier parallel convolutions.
2.4.3 TARNet. The architecture of TARNet is depicted in Fig 6.
TARNet starts with a linear layer, the purpose of which is to generate the input embedding for the multi-head attention layer. The output of the linear layer is normalized and then combined with a positional encoding. The positional encoding helps the model learn the sequential nature of the data [37]. This is required because without a positional encoding the transformer does not have the inductive bias to infer the significance of the data sequence [37]. In this case, the sequence of the data is significant because the order of the samples in the signal contains crucial information. After adding the positional encoding, the output is normalized once again. Following normalization, the output is fed into a multi-head attention layer. Attention seeks to learn the significance of the relationship of each point in the input data sequence and every other data point. This generates what is known as an attention matrix [37]. After the attention layer, the output is fed into multiple linear layers, dropout with residual connections, and layer normalizations.
2.5 Model training and evaluation
The preprocessed dataset was split into a training/validation dataset, to train and optimize the performance of each model, and a testing dataset, to quantify the model’s ability to generalize to data it was not trained on. The split ratio was 90% training/validation and 10% testing. To prevent training biases, each class in the training/validation sets (dorsiflexion, plantarflexion, and pricking of the heel) was made to have an equal number of samples. This process was different for the augmented and unaugmented datasets. For the augmented dataset, data augmentation was used to increase each class to 1.5 times the size of the largest class as outlined in the Data Augmentation section. For the unaugmented dataset, samples were removed from the larger classes to match the number of samples in the smallest class. This prevents the model from achieving good performance by guessing the most common signal class in the dataset. After balancing the classes, the training/validation set was split using a 3-fold cross-validation approach to ensure confidence in model performance for each rat. For each fold, the data was split 66% for training and 33% for validation. The test set was left unmodified to ensure it is most representative of new data that the model has not seen. Each model was trained on the training folds and evaluated on the validation fold; the performance on each of the folds was averaged and the best models were trained on all folds then evaluated on the test set.
Models were trained in PyTorch on an NVIDIA GEFORCE RTX 3090 GPU. All models were trained for a maximum of 400 epochs with an early stopping patience of 3 epochs which is triggered only if validation accuracy exceeded 85% to prevent overfitting of the training set. 400 epochs were selected, as it was observed all models plateaued well before 400 epochs. Early stopping was only used after validation accuracy exceeded 85% as it was observed that the validation accuracy did not increase monotonically in most cases. Cross entropy loss was used as the loss function with Adaptive Momentum Estimation (ADAM) used as the gradient descent optimizer. All other training hyperparameters can be found in S1 File.
To evaluate model performance, two metrics were selected. The first metric selected was test accuracy. This is the accuracy the model achieves on the test set. The second metric chosen was the testing macro F1-score. The F1-score is the harmonic mean of precision and recall. Macro F1-score is used as it weighs all classes equally, allowing it to reflect any biases in the model to guess or not guess a certain class. Both metrics were treated as equally important when comparing models.
3. Results
Table 1 presents the results of the MSCB Single Classifier network on datasets with different signal lengths evaluated on the unaugmented dataset.
Based on these results, the decision was made to use a window length of 1500 for further experimentation. The results of each model’s performance on the 1500 unaugmented dataset are presented in Table 2. For comparison, ESCAPE-NET achieved an accuracy of 0.808 ± 0.104 and F1-score of 0.747 ± 0.153 using windows of 100 samples.
After optimization on the unaugmented datasets, each model was evaluated on the augmented dataset. The results of those experiments are provided in Table 3.
Overall, the results are positive and support the hypothesis that deep neural networks designed for time series data can provide effective classification of extraneural ENG. Data augmentation has further been demonstrated to boost performance in this application.
4. Discussion
4.1 Signal length and application in closed-loop control devices
4.1.1 Latency.
When developing closed-loop neuroprosthetics for motor function, it is crucial to consider the latency of the feedback pathway. For comparison, in the myoelectric control literature, a delay of 100–125 ms has been found to be acceptable [38]. From Table 1, it can be seen that model performance did not differ greatly between signal lengths of 1500 and 2250, but a large drop in performance was seen when using signal lengths of 100. At a sampling rate of 30kHz, a signal length of 1500 corresponds to 50 ms. Furthermore, in this study, the average inference time for a single signal varied between 1 and 2.5ms, as shown in Table 4. This indicates that there is potential to integrate this model into a closed-loop control device. While the computational requirements of deep learning models may pose challenges for implantable systems, recent work suggests that CNNs for ENG classification can be reduced in size with only a minor impact on performance [39].
4.1.2 Accuracy vs time resolution.
From Table 1, it is clear that increasing the window size has a positive impact on the classification accuracy of time series models. This is consistent with previous finding applying classifiers to longer windows of data in this dataset [40]. One possible factor to explain the trend observed in the present study is the possibility of long windows containing multiple nCAPS, thereby allowing the model to learn features about the firing rate of each pathway and providing another basis for classifying signals. In contrast, a window size of 100 can only contain a single nCAP. However, it is important to analyze the trade-off to a longer window.
In this study, all signals only contained nCAPs from a single class. In real situations, this homogeneity in activity would not be present. This is not a significant problem for windows that are small enough to only contain a single nCAP but is a challenge with larger windows as nCAPs from multiple pathways may be observed in a single window.
Furthermore, a longer window decreases the time resolution of the method, leading to a slower time to detect changes in the activity of target pathways due to both the longer window needed and the longer processing time.
4.2 Model comparison
From Table 2 it is observed that overall, the MSCB networks had better performance than InceptionTime and TARNet. For InceptionTime, this may be attributed to the increased complexity of the network¸ which uses 3 Inception Modules per Inception Block. This results in a much deeper network which can lead to the vanishing/exploding gradient problem [41]. While residual connections and layer normalization may help mitigate this problem, neither completely solve the issue.
TARNet’s performance was the worst among all networks tested. This result may stem from the low inductive bias of the transformer architecture. The low inductive bias of the transformer architecture is very beneficial in problems with large amounts of data as it allows the model to do a more global search for an optimal solution. However, with smaller datasets, inductive biases can provide a constraint on the search space to help the model find a good local optimum.
The performance difference between the MSCB Single Classifier and MSCB Auxiliary was minimal. This indicates that the addition of a residual connection did not significantly impact the performance of the network. Furthermore, adding the residual connection increases the size of the network and thus slows the speed of inferences. Therefore, we conclude that the MSCB Single Classifier model was the preferred approach among the four time-series architectures investigated.
4.3 Data augmentation and data limitations
Comparing Tables 2 and 3, it can be seen that data augmentation improved performance for all networks. This is in line with expectations as the data-augmented dataset is over twice as large as the minimum dataset as shown below in Fig 7.
This finding validates the data augmentation techniques used; if data augmentation created invalid synthetic data, a drop in performance should have been observed.
Out of all models, TARNet had the biggest boost in performance from data augmentation. This is expected as the transformer require more data compared to CNNs. This result suggests that if more data can be collected a transformer model may achieve state of the art performance.
4.4 Future work
To reach the goal of integrating these models into closed-loop neuroprosthetic systems, there are more challenges to be overcome. First, models will need to be trained and evaluated on datasets that contain signals from multiple pathways at once. In this study, there was only a single stimulation occurring at one time. This includes evaluating model performance on a broader number of situations including more complex movement patterns which will yield more complex patterns of neural activity. The model should also be applied to different nerves as the number of fascicles will differ between nerves.
Second, the performance of the model should be evaluated in chronic applications to better understand the effect of issues that may occur during long-term implantation, such as damage or movement of the electrode and the growth of encapsulation tissue.
Third, models will need to be applied to signals that are collected from awake and moving subjects. At this time, all subjects were fully anesthetized which reduces the amount of noise from other pathways and minimizes any shifting of the nerve cuff. When collecting from awake subjects, there will likely be more signal artefacts present and increased temporal overlap of signals.
Fourth, it will be crucial to deploy models that are sufficiently resource-efficient to be integrated into implantable systems [42].
5 Conclusion
This work presents a novel method for classifying extraneural peripheral nerve signals. Using ENG recordings from a 56-contact nerve cuff electrode, we investigated several deep learning models designed for time-series classification. A multi-scale 1D-CNN combined with data augmentation strategies was found to provide very high classification accuracy, 0.936 ± 0.084, when applied to 50 ms windows. These results provide exciting new areas of investigation for the development of closed-loop neuroprosthetic systems.
Acknowledgments
This work would also like to acknowledge Dr. Ryan Koh for his support in this project and most importantly for the collection of the dataset used.
References
- 1. Sarroca N, Valero J, Deus J, Casanova J, Luesma MJ, Lahoz M. Quality of life, body image and self-esteem in patients with unilateral transtibial amputations. Sci Rep. 2021;11(1):1–8.
- 2. Cao Y, DiPiro ND, Krause JS. Longitudinal changes in employment, health, participation, and quality-of-life and the relationships with long-term survival after spinal cord injury. Spinal Cord. 2023; pmid:36854965
- 3. Tan DW, Schiefer MA, Keith MW, Robert J, Tyler J, Tyler DJ. A neural interface provides long-term stable natural touch perception. Sci Transl Med. 2014;6(257):1–25. pmid:25298320
- 4. Tan DW, Schiefer MA, Keith MW, Anderson RJ, Tyler DJ. Stability and selectivity of a chronic, multi-contact cuff electrode for sensory stimulation in human amputees. Journal Neural Engineering. 2015;12(2):1–19. pmid:25627310
- 5. Page DM, George JA, Kluger DT, Duncan C, Wendelken S, Davis T, et al. Motor Control and Sensory Feedback Enhance Prosthesis Embodiment and Reduce Phantom Pain After Long-Term Hand Amputation. Front Hum Neurosci. 2018;12(September):1–16. pmid:30319374
- 6. Peckham PH, Knutson JS. Functional electrical stimulation for neuromuscular applications. Annu Rev Biomed Eng. 2005;7(June):327–60. pmid:16004574
- 7. Howlett OA, Lannin NA, Ada L, Mckinstry C. Functional electrical stimulation improves activity after stroke: A systematic review with meta-analysis. Arch Phys Med Rehabil. 2015;96(5):934–43. pmid:25634620
- 8. Marquez-Chin C, Popovic MR. Functional electrical stimulation therapy for restoration of motor function after spinal cord injury and stroke: A review. Biomed Eng Online. 2020;19(1):1–25.
- 9. Lynch CL, Popovic MR. A comparison of closed-loop control algorithms for regulating electrically stimulated knee movements in individuals with spinal cord injury. IEEE Transactions on Neural Systems and Rehabilitation Engineering. 2012;20(4):539–48. pmid:22772375
- 10. Ho CH, Triolo RJ, Elias AL, Kilgore KL, DiMarco AF, Bogie K, et al. Functional electrical stimulation and Spinal Cord Injury. Vol. 25, Physical Medicine and Rehabilitation Clinics of North America. W.B. Saunders; 2014. p. 631–54. pmid:25064792
- 11.
del Valle J, Navarro X. Interfaces with the peripheral nerve for the control of neuroprostheses. 1st ed. Vol. 109, International Review of Neurobiology. Elsevier Inc.; 2013. 63–83 p.
- 12. Larson CE, Meng E. A review for the peripheral nerve interface designer. J Neurosci Methods. 2020;332(June 2019):108523. pmid:31743684
- 13. Koh RGL, Zariffa J, Jabban L, Yen SC, Donaldson N, Metcalfe BW. Tutorial: A guide to techniques for analysing recordings from the peripheral nervous system. Vol. 19, Journal of Neural Engineering. Institute of Physics; 2022. pmid:35772397
- 14. Koh RGL, Balas M, Nachman AI, Zariffa J. Selective peripheral nerve recordings from nerve cuff electrodes using convolutional neural networks. J Neural Eng. 2020;17(1). pmid:31581142
- 15. Koh RGL, Nachman AI, Zariffa J. Classification of naturally evoked compound action potentials in peripheral nerve spatiotemporal recordings. Sci Rep. 2019;9(1):11145. pmid:31366940
- 16. Ismail Fawaz H, Forestier G, Weber J, Idoumghar L, Muller PA. Deep learning for time series classification: a review. Data Min Knowl Discov. 2019 Jul 1;33(4):917–63.
- 17. Clarke RW, Eves S, Harris J, Peachey JE, Stuart E. Interactions between cutaneous afferent inputs to a withdrawal reflex in the decerebrated rabbit and their control by descending and segmental systems. Neuroscience. 2002 Jul 5;112(3):555–71. pmid:12074898
- 18. Riso RR, Mosallaie FK, Jensen W, Sinkjaer T. Nerve Cuff Recordings of Muscle Afferent Activity from Tibial and Peroneal Nerves in Rabbit During Passive Ankle Motion. Vol. 8, IEEE TRANSACTIONS ON REHABILITATION ENGINEERING. 2000. pmid:10896197
- 19. Leem JW, Willis WD, Chung JM. Cutaneous sensory receptors in the rat foot. J Neurophysiol. 1993 May 1;69(5):1684–99. pmid:8509832
- 20. Struijk JJ, Thomsen M. Tripolar nerve cuff recording: Stimulus artifact, EMG, and the recorded nerve signal. Annual International Conference of the IEEE Engineering in Medicine and Biology—Proceedings. 1995;17(2):1105–6.
- 21. Stein RB, Charles D, Davis L, Jhamandas J, Mannard A, Nichols TR. Principles Underlying New Methods for Chronic Neural Recording. Canadian Journal of Neurological Sciences / Journal Canadien des Sciences Neurologiques. 1975;2(3):235–44. pmid:1175105
- 22. Metcalfe B, Chew D, Clarke C, Donaldson N, Taylor J. Fibre-selective discrimination of physiological ENG using velocity selective recording: Report on pilot rat experiments. In: 2014 36th Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBC 2014. Institute of Electrical and Electronics Engineers Inc.; 2014. p. 2645–8. pmid:25570534
- 23. Metcalfe BW, Chew DJ, Clarke CT, Donaldson N de N, Taylor JT. A new method for spike extraction using velocity selective recording demonstrated with physiological ENG in Rat. J Neurosci Methods. 2015 Aug 5;251:47–55. pmid:25983203
- 24. Schuettler M, Donaldson N, Seetohul V, Taylor J. Fibre-selective recording from the peripheral nerves of frogs using a multi-electrode cuff. J Neural Eng. 2013 Jun;10(3). pmid:23640008
- 25. Quian Quiroga R, Nadasdy Z. Communicated by Maneesh Sahani Unsupervised Spike Detection and Sorting with Wavelets and Superparamagnetic Clustering. Neural Comput. 2004;16:1661–87.
- 26. Iglesias G, Talavera E, González-Prieto Á, Mozo A, Gómez-Canaval S. Data Augmentation techniques in time series domain: A survey and taxonomy. 2022 Jun 25; Available from: http://arxiv.org/abs/2206.13508
- 27. Roy AM. An efficient multi-scale CNN model with intrinsic feature integration for motor imagery EEG subject classification in brain-machine interfaces. Biomed Signal Process Control. 2022;74(November 2021):103496.
- 28. Ismail Fawaz H, Lucas B, Forestier G, Pelletier C, Schmidt DF, Weber J, et al. InceptionTime: Finding AlexNet for time series classification. Data Min Knowl Discov. 2020;34(6):1936–62.
- 29.
Chowdhury RR, Zhang X, Shang J, Gupta RK, Hong D. TARNet: Task-Aware Reconstruction for Time-Series Transformer. In: Proceedings of the ACM SIGKDD International Conference on Knowledge Discovery and Data Mining. Association for Computing Machinery; 2022. p. 212–20.
- 30. Ramesh A, Dhariwal P, Nichol A, Chu C, Chen M. Hierarchical Text-Conditional Image Generation with CLIP Latents. 2022 Apr 12; Available from: http://arxiv.org/abs/2204.06125
- 31. OpenAI. GPT-4 Technical Report. 2023.
- 32. Goyal A, Bengio Y. Inductive Biases for Deep Learning of Higher-Level Cognition. 2020 Nov 30; Available from: http://arxiv.org/abs/2011.15091
- 33. Ruan BK, Shuai HH, Cheng WH. Vision Transformers: State of the Art and Research Challenges. 2022 Jul 6; Available from: http://arxiv.org/abs/2207.03041
- 34. Bai Y, Mei J, Yuille A, Xie C. Are Transformers More Robust Than CNNs? [Internet]. 2021. Available from: https://github.com/ytongbai/ViTs-vs-CNNs.
- 35. Szegedy C, Liu W, Jia Y, Sermanet P, Reed S, Anguelov D, et al. Going Deeper with Convolutions. 2015.
- 36. Szegedy C, Ioffe S, Vanhoucke V, Alemi AA. Inception-v4, Inception-ResNet and the Impact of Residual Connections on Learning [Internet]. 2017. Available from: www.aaai.org
- 37. Vaswani A, Shazeer N, Parmar N, Uszkoreit J, Jones L, Gomez AN, et al. Attention Is All You Need. 2017 Jun 12; Available from: http://arxiv.org/abs/1706.03762
- 38. Farrell TR, Weir RF. The optimal controller delay for myoelectric prostheses. IEEE Transactions on Neural Systems and Rehabilitation Engineering. 2007 Mar;15(1):111–8. pmid:17436883
- 39. Hwang YCE, Genov R, Zariffa J. Resource-Efficient Neural Network Architectures for Classifying Nerve Cuff Recordings on Implantable Devices. IEEE Trans Biomed Eng. 2023;
- 40.
Koh RGL, Jabban L, Fukushi M, Adeyinka IC, Zariffa J, Metcalfe B. A comparison of extraneural approaches for selective recording in the peripheral nervous system. In: Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS. Institute of Electrical and Electronics Engineers Inc.; 2022. p. 5080–3.
- 41. Szegedy C, Liu W, Jia Y, Sermanet P, Reed S, Anguelov D, et al. Going Deeper with Convolutions. 2014 Sep 16; Available from: http://arxiv.org/abs/1409.4842
- 42. Hwang YE, Genov R, Zariffa J. Resource-efficient Neural Network Architectures for Classifying Nerve Cuff Recordings on Implantable Devices. 2022; Available from: https://doi.org/10.1101/2022.10.05.510983