Skip to main content

ORIGINAL RESEARCH article

Front. Cardiovasc. Med., 15 February 2024
Sec. Cardiac Rhythmology
This article is part of the Research Topic Artificial Intelligence in Cardiac Rhythmology View all 7 articles

Convolutional neural network (CNN)-enabled electrocardiogram (ECG) analysis: a comparison between standard twelve-lead and single-lead setups

Updated
  • 1Division of Cardiology, Cardiovascular and Thoracic Department, “Citta della Salute e della Scienza” Hospital, Turin, Italy
  • 2Department of Medical Sciences, University of Turin, Turin, Italy
  • 3Department of Computer Science, University of Turin, Turin, Italy
  • 4Laboratorio InfoLife, Consorzio Interuniversitario Nazionale per l'Informatica (CINI), Rome, Italy

Background: Artificial intelligence (AI) has shown promise in the early detection of various cardiac conditions from a standard 12-lead electrocardiogram (ECG). However, the ability of AI to identify abnormalities from single-lead recordings across a range of pathological conditions remains to be systematically investigated. This study aims to assess the performance of a convolutional neural network (CNN) using a single-lead (D1) rather than a standard 12-lead setup for accurate identification of ECG abnormalities.

Methods: We designed and trained a lightweight CNN to identify 20 different cardiac abnormalities on ECGs, using data from the PTB-XL dataset. With a relatively simple architecture, the network was designed to accommodate different combinations of leads as input (<100,000 learnable parameters). We compared various lead setups such as the standard 12-lead, D1 alone, and D1 paired with an additional lead.

Results: The CNN based on single-lead ECG (D1) achieved satisfactory performance compared to the standard 12-lead framework (average percentage AUC difference: −8.7%). Notably, for certain diagnostic classes, there was no difference in the diagnostic AUC between the single-lead and the standard 12-lead setups. When a second lead was detected in the CNN in addition to D1, the AUC gap was further reduced to an average percentage difference of −2.8% compared with that of the standard 12-lead setup.

Conclusions: A relatively lightweight CNN can predict different classes of cardiac abnormalities from D1 alone and the standard 12-lead ECG. Considering the growing availability of wearable devices capable of recording a D1-like single-lead ECG, we discuss how our findings contribute to the foundation of a large-scale screening of cardiac abnormalities.

Introduction

The 12-lead electrocardiogram (ECG) is a fundamental instrument used in diagnosing cardiac abnormalities. Traditionally, 12-lead ECGs are analyzed by trained medical professionals; however, recent advances in artificial intelligence (AI) and, in particular, deep neural networks (1) have enabled methods to accurately analyze ECGs (2, 3). In the diagnosis of rhythm disturbances, these approaches outperform expert cardiologists in terms of diagnostic accuracy (4). Furthermore, AI demonstrated the ability to recognize specific patterns and ECG waveform abnormalities that are invisible to the human eye, e.g., detecting a high likelihood of cardiac contractile dysfunction or a future or past episode of atrial fibrillation from an “apparently” normal ECG in sinus rhythm (5, 6). Thus, an AI-based analysis of the 12-lead ECG has the potential for a prompt and accurate diagnosis of ECG abnormalities and early detection of different cardiac diseases. The rapid adoption of wearable devices capable of recording single-lead ECGs (710) has opened new opportunities in diagnosing cardiac disorders such as atrial fibrillation. Anecdotally, a precordial smartwatch has been found to detect signs of myocardial ischemia with a 12-lead ECG and to record an event of ventricular fibrillation (11). AI-based algorithms have shown potential in detecting cardiac alterations from single-lead ECG recordings. For example, Attia et al. (12) reported that an AI-based analysis of a single-lead ECG of a smartwatch worn by approximately 2,500 patients correctly identified a left ventricular ejection fraction (LVEF) of <40% in 16 patients. To the best of our knowledge, there are no studies that systematically assess the performance of AI-based algorithms based on single-lead ECG across different ECG cardiac diagnoses.

Moreover, the computing ability of battery-operated wearable devices is typically limited, making large deep neural networks not suitable for such platforms and necessitating the development of ad hoc algorithms for ECG analysis. This work aims to address the above issues through a twofold contribution. First, we propose an ad hoc method for detecting cardiac abnormalities based on a lightweight CNN, as opposed to the state-of-the-art architectures typically used for this task. Second, we train our CNN to identify from the single-lead D1 (and in combination with D2) more than 20 different cardiac conditions that are typically diagnosed from standard 12-lead ECGs with far more complex architectures. We show that for multiple ECG abnormalities [e.g., AV block, complete left or right bundle branch block, and lateral myocardial infarction (LMI)], the performance of our single-lead lightweight CNN is comparable to that provided by more complex architectures using standard 12-lead setups. These results show the potential to integrate AI-based algorithms into wearable devices for mass-screening the population against cardiac diseases, as discussed in the last section of this article.

Methods

The PTB-XL ECG dataset

The PTB-XL ECG dataset (13, 14) is a publicly available dataset containing 21,837 clinical 12-lead ECGs (based on the Wilson lead system) of 10 s length from 18,885 patients (52% males, 48% females, median age of 62 years; interquartile range, 22 years; range, 0–95 years) recorded at a sampling frequency of 500 Hz.

Prediction was assessed as a multi-label classification task (13) according to the 20 diagnostic classes shown in Figure 1 (the 5 macro classes are reported only for the sake of completeness and were not considered in this study).

Figure 1
www.frontiersin.org

Figure 1. Distribution of PTB-XL ECG diagnoses (aggregated into 20 diagnostic classes and 5 diagnostic superclasses).

The ECGs were divided into 10 folds. According to Wagner et al. (13), since containing only ECGs validated by at least one cardiologist and therefore presumably representative of the highest label quality, the ninth fold was used as the validation set and the tenth fold as the test set. The other eight folds served as the training set.

Data preprocessing

As in previous literature, ECGs were downsampled at 100 Hz signals (1,000 samples for each of the 12 leads, for each ECG). ECGs that either had (i) conflicting labels (being classified as NORM and as some other non-NORM diagnostic class), (ii) lack of classification (not classified into any diagnostic class), or (iii) diagnostic statements with a likelihood equal to 0% were filtered out. Of the resulting 21,008 ECGs, 17,598 were used as the training set, 1,708 as the validation set, and 1,702 as the test set. Following standard practice, we independently normalized each lead over the mean and standard deviation computed on the training set.

Finally, each ECG was represented as a matrix with L rows and W columns, where L represents the number of considered leads (between 1 and 12, depending on the number of leads input) and W represents the length of the ECG (maximum of 1,000 samples at 100 Hz sampling frequency). The number of samples that was provided as input to the CNN eventually depended on the network receptive field, as discussed below.

Convolutional network architecture

Although Strodthoff et al. (15) found the deep ResNet with 101 layers was the best-performing model, to assess CNN diagnostic performance for an arbitrary number of L input leads, we used a straightforward architecture with eight convolutional layers (Figure 2). This architecture is composed of a few sections with well-defined functions that can be easily interpreted (6). Keras framework with a TensorFlow (Google; Mountain View, CA, USA) backend was used to implement the CNN. In the first section, a convolutional layer with one 1 × 1 filter performs a preliminary linear transformation over the L leads taken as input. Next, a section with six convolve–normalize–pool blocks follows. For each block, a convolutional layer extracts feature maps, where batch normalization is meant to accelerate learning and a 1 × 2 MaxPooling operator halves the feature maps size across the temporal axis W only. The number of output feature maps by each convolutional block is 16, 16, 32, 32, 64, and 64, respectively. The filter sizes are 1 × 5, 1 × 5, 1 × 5, 1 × 3, 1 × 3, and 1 × 3, respectively. Attia et al. (6) reported that convolutional filters have a dilation rate of 2 to increase the receptive field without resorting to 4× pooling. This section of the CNN fuses each lead over the temporal axis and projects the L leads over a larger feature space. The output of this section is a vector of 64 feature maps with a size of 1 × 1, i.e., a vector of 64 features, for each of the L leads. Since the receptive field of these features was W = 344 samples along the temporal axis, this network required about 3.4 s of ECG sampling at 100 Hz to produce a diagnostic output. Thus, the presence of 10 s of sampling of each ECG allowed for a data augmentation strategy as reported below. Notably, each lead was independently filtered up to this point, i.e., there was no mixing between information coming from different leads.

Figure 2
www.frontiersin.org

Figure 2. Detailed CNN architecture.

In the third section, an eighth and last convolutional layer with 128 filters with a size of 1 × 1 projects a linear combination of these features over a larger 128 × 1 vector of features. This was the only part of the network where information from different leads was fused.

The output layer is composed of 20 neurons with sigmoid activations, one for each of the 20 PTB-XL ECG diagnostic classes, acting as 20 independent binary classifiers.

The number of learnable parameters of this CNN depends on the number of leads provided in input (i.e., from dimension L of the input matrix introduced below) and ranges from 36,000 parameters for L = 1 up to 96,000 parameters for L = 12 leads.

Data augmentation

To maximize the ability of the network to generalize over data unseen at training time, the training samples were augmented with the following random transformations:

• Gaussian noise: noise, drawn from a Gaussian distribution with zero mean and standard deviation from a uniform distribution in the [0.01, 0.1] interval, was added to each ECG lead.

• Time scale: for each ECG, all leads were temporally stretched or compressed by a random factor uniformly drawn from the [0.8, 1.2] interval.

• Amplitude: for each ECG, all the samples were multiplied by a random factor uniformly drawn from the [0.7, 1.3] interval.

• Temporal cropping: starting from a random position, in each ECG, a window of W = 344 consecutive samples was cropped. The width of the window corresponds to the receptive field of the above CNN.

Notably, these transformations were applied only to the training set except for temporal cropping that was applied to all: the network was trained and evaluated on random segments of about 3.4 s.

Input setups

The CNN was designed to receive as input a matrix of size L × W, where L represents an arbitrary number of leads between 1 and 12. Regardless of L, the network always produced a vector y of 20 values ∈ [(0, 1)] as output, corresponding to the diagnostic classes. Hence, the network allowed us to fairly compare experiments where different subsets of leads act as input of the network. In total, we assessed four different input setups:

• Standard 12-lead ECG, input matrix 12 × 344 (i.e. 12 leads of 344 samples at 100 Hz each, which is about 3.4s of ECG)r

• Independent leads (eight-lead) ECG, input matrix 8 × 344; considering that four leads (D3, aVR, aVL, aVF) are linear combinations of leads D1 and D2, the eight independent leads (lead D1, lead D2, leads V1–V6) were used as input.

• Single-lead ECG (lead D1), input matrix 1 × 344.

• Two-lead ECG (lead D1 + additional lead), input matrix 2 × 344; lead D1 was coupled with a second lead, registering information from a different spatial axis.

Training procedure and performance assessment

The network was trained to minimize the sum of the binary cross-entropies computed over the 20 outputs of the network. Adam (16) was used as an optimizer. The learning rate was set to decay linearly from 10−2 to 10−4 by a batch size equal to 32 ECGs for 200 epochs of training in total.

According to Wagner et al. (13), the results were reported as macro-averaged and threshold-free measures; in particular, the performance of the network was evaluated by the area under the curve (AUC) (13). In addition, we also evaluated the sensitivity and specificity at the best threshold identified by the receiver–operator curve (ROC) analysis for each diagnostic class (please refer to Supplementary Tables S4 and S5).

To evaluate the consistency of our results, we also tested a fine-tuned version of the trained network on two other publicly available datasets, namely, the Georgia and China datasets (14). Please refer to the Supplementary Material for a more detailed description of this additional evaluation.

Results

Table 1 summarizes the AUC with a 95% CI (over 50 runs) of the PBT-XL ECG test set for each diagnostic class and the inter-class average, for each investigated diagnostic scenario. As a state-of-the-art reference, the table also presents the outputs using the architecture (deep ResNet with 101 layers) proposed by Strodthoff et al (15).

Table 1
www.frontiersin.org

Table 1. Average AUC with 95% CI (over 50 runs) of the considered scenarios.

Standard (12-lead) setup

The average AUC across the 20 diagnostic classes achieved by the standard 12-lead setup was 93.2%, and when the data augmentation strategy was omitted during CNN training, the performance dropped by 1.1%.

Independent (eight-lead) setup

The eight-lead setup (leads D1, D2, V1, V2, V3, V4, V5, and V6) did not induce a performance loss as compared with the 12-lead setup: the average percentage difference over the 20 diagnostic classes was −0.3%. Being the four excluded leads (D3, aVR, aVL, aVF), which are linear combinations of leads D1 and D2, this finding supports the idea that they provide redundant information, which is associated with a computational burden (96,000 and 56,000 parameters in the 12- and 8-lead setups, respectively).

Single-lead (D1) setup

The single D1-lead setup was associated with an average of −8.7% accuracy as compared with the 12-lead setup. For some specific diagnostic classes, the performance drop was significant. Namely, inferior myocardial infarction (IMI), inferior myocardial ischemia (ISCI), and incomplete right bundle branch block (IRBBB) showed a drop in accuracy of >20%. On the other hand, for several other diagnostic classes, non-specific ischemic changes (ISC_), ischemic changes in anterior leads (ISCA), non-specific ST changes (NST_), AV block (_AVB), complete left bundle branch block (CLBBB), complete right bundle branch block (CRBBB), incomplete left bundle branch block (ILBBB), left atrial overload/enlargement (LAO/LAE), and LMI, the drop in accuracy was <5% (the performance drop was smaller than 1% for CLBBB, CRBBB, and LMI). The upper panel of Figure 3 shows the performance comparison of single-lead and standard 12-lead setups.

Figure 3
www.frontiersin.org

Figure 3. AUC percentage variation among single-lead (D1) and 12-lead scenarios (top chart) and among D1 + D2 and 12-lead scenarios (bottom chart). Percentage differences are reported relative to the 12-lead setup.

Two-lead setup

Among all leads, D2 yielded the best increase in average AUC compared to the single D1-lead setup. The average AUC across the 20 diagnostic classes achieved by the two-lead setup was 90.6%, which represented an average percentage difference over the 20 diagnostic classes of −2.8% compared with the standard 12-lead setup (90.6% vs. 93.2%). The use of an additional lead proved particularly useful in the diagnostic classes in which the single-lead setup performed worse. In the IMI and SCI classes, the accuracy loss compared to standard 12-lead ECG was reduced from >20% with single-lead to <2% with a two-lead setup. The bottom panel of Figure 3 shows the performance comparison of two-lead vs. standard 12-lead setups.

Interestingly, for two diagnostic classes, namely, right atrial overload/enlargement (RAO/RAE) and LAO/LAE, the two-lead performed better than the 12-lead setup (+4.9% and +5.5%, respectively). On the other hand, the diagnosis of anterior (not anterolateral) myocardial infarction still showed a 10% lower accuracy with the two-lead as compared with the 12-lead setup (in this case, the addition of V2, a lead recording information from a different spatial axis, reduced the diagnostic loss to <2%).

Validation on an external dataset

We fine-tuned the trained network to test it on other two external freely available datasets, namely, the Georgia and China datasets (14), to increase the rigor. The drops in the average AUCs calculated on the test set of these datasets are in agreement with the findings on the PTB-XL dataset. Please refer to the Supplementary Material for a more detailed description of this additional evaluation.

Discussion

The present study analyzed over 20,000 ECGs with 20 different abnormalities confirming the accuracy of a lightweight deep learning algorithm based on CNN (also with a very simplified architecture) and significantly increasing our understanding of the potential of AI-based ECG diagnostics. Figure 4 shows a graphical summary of the main findings of the study.

Figure 4
www.frontiersin.org

Figure 4. Graphical summary of the study.

The main new finding was the demonstration that the D1 lead analyzed with the same CNN approach provided an overall accuracy that was only slightly inferior to that of the full 12-lead setup. For several ECG abnormalities, including important conditions such as AV block, complete left or right bundle branch block and LMI, the diagnostic yield of this single-lead approach was almost identical to that provided by the 12-lead standard setup.

Adding a second lead to D1 further reduced the performance gap with the 12-lead ECG setup. On average, the best AUC for a two-lead setup was achieved by combination D1 + D2: the simple combination of these two contiguous leads, by adding a second spatial axis exploring cardiac electrical activity, allowed to reduce the diagnostic gap by 64% (from a relative percentage difference of −7.8% to −2.8%). Notably, this approach also was capable of providing a marked increase in the accuracy of detecting myocardial ischemia and infarction of the inferior wall, a condition difficult to detect from the sole D1 lead. In addition, for some cases, such as the diagnoses of right and left atrial enlargement, the two-lead analysis outperformed the 12-lead setup, probably because it included the most informative lead (D2) for these alterations avoiding less informative leads potentially introducing noise. On the other hand, in terms of detection of myocardial ischemia and infarction of the anterior wall, the D1 + V2 setup overcame the D1 + D2 setup, due to the need, in these specific clinical scenarios, for a lead (such as V2), which spatially explores the site where the typical alterations for these conditions are found. Focusing on architecture, our proposed relatively lightweight neural network (36,000–96,000 trainable parameters) yielded similar results to those of more complex architectures [Attia et al. (6): 300,000 parameters; top-performing architecture by Strodthoff et al. (15): 3.5 million parameters]. In particular, we highlighted the fact that the present CNN model, in the 12-lead input setup, numerically outperformed the far more complex ResNet architecture proposed by Strodhtoff et al. for the same multi-label classification task (AUC: 0.932 vs. 0.931; please refer to Table 1). This high performance is due to the neural network design, tailored for this specific application, and to the extensive use of data augmentation, which also represents a significant step forward relative to previous studies.

The present findings have potentially large implications. As an example, even an acute myocardial infarction may potentially be detected by a single-lead recording. There is an enormous effort to reduce the time delay between the hospital door and the ECG execution in case of chest pain, applying refined triage strategies. However, the time spared, although statistically significant, is often very modest [1 min in the study by Su et al. (17)]. Thus, the delay from symptom onset to diagnostic ECG is the most actionable and likely the sole independent predictor of pre-discharge LVEF (18) and possibly of mortality (19). In addition, left bundle branch blocks (both complete and incomplete) and non-specific intraventricular conduction disturbances are accurately recognized by the AI-enabled single-lead ECG and, given their association with increased mortality (20), might prompt the need for further clinical investigations. The same is also true for atrioventricular blocks.

Conclusions

AI-enabled ECG based on the sole D1 lead showed good performance in predicting cardiac abnormalities with a limited drop in AUC if compared to 12-lead ECG. Adding the additional lead D2 further reduces the performance gap. Altogether, our results prove that AI-enabled single or two-lead ECG analysis might be sufficient to detect cardiac abnormalities that have been classically diagnosed by 12-lead ECG. These results, paired with the relatively low complexity of our approach, lay the basis for extending the use of AI-enabled analysis of a reduced number of ECG recordings derived from the increasingly available wearable devices, potentially favoring a more accessible and large-scale screening of cardiac conditions. In a smartwatch, a D1-like lead is the default recording (obtained by keeping the watch on the left wrist and touching the crown with the right index), but a D2-like lead can be easily and reliably obtained by simply moving the watch to the left lower abdomen, still keeping the right finger on the crown (21). Precordial leads could also be obtained, but their recording appears more cumbersome. In this context, the recent work by Attia et al. (12) is noteworthy, as they effectively retrained a deep neural network originally designed for analyzing 12-lead ECGs to be compatible with single-lead ECGs derived from wearable devices (although for a specific task). However, our current experimental evidence is entirely based on leads from standard 12-lead ECGs, and not directly on single-lead recordings from wearable devices. We expect that reproducing our results on wearable devices would pose a set of unique challenges. For example, the increased impedance of a dry electrode on the wrist may lead to increased sampling noise while wearing the device at peripheral locations on the body might attenuate the signal amplitude, calling for robust noise filtering techniques. Together with the need to minimize the complexity due to the constrained processing capabilities, wearable devices represent a formidable challenge both in a medical and engineering sense, prompting further research in this direction.

Data availability statement

Publicly available datasets were analyzed in this study. This data can be found here: https://physionet.org/content/ptb-xl/1.0.1/.

Author contributions

AS: conceptualization, writing – original draft, writing – review and editing, investigation. DB: data curation, investigation, methodology, software, writing – original draft, writing – review and editing, visualization. RE: supervision, writing – review and editing. MA: writing – review and editing. VD: writing – review and editing. AF: investigation, methodology, supervision, validation, writing – original draft, writing – review and editing. GF: supervision, writing – review and editing.

Funding

The authors declare that no financial support was received for the research, authorship, and/or publication of this article.

Acknowledgments

AS and DB are PhD students enrolled in the National PhD in Artificial Intelligence, XXXVII cycle, course on Health and life sciences, organized by Università Campus Bio-Medico di Roma.

Conflict of interest

The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

The authors declared that they were an editorial board member of Frontiers, at the time of submission. This had no impact on the peer review process and the final decision.

Publisher's note

All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article, or claim that may be made by its manufacturer, is not guaranteed or endorsed by the publisher.

Supplementary material

The Supplementary Material for this article can be found online at: https://www.frontiersin.org/articles/10.3389/fcvm.2024.1327179/full#supplementary-material

References

1. Lecun Y, Bengio Y, Hinton G. Deep learning. Nature. (2015) 521:436–44. doi: 10.1038/nature14539

PubMed Abstract | Crossref Full Text | Google Scholar

2. Siontis KC, Noseworthy PA, Attia ZI, Friedman PA. Artificial intelligence-enhanced electrocardiography in cardiovascular disease management. Nat Rev Cardiol. (2021) 18:465–78. doi: 10.1038/s41569-020-00503-2

PubMed Abstract | Crossref Full Text | Google Scholar

3. Hong S, Zhou Y, Shang J, Xiao C, Sun J. Opportunities and challenges of deep learning methods for electrocardiogram data: a systematic review. Comput Biol Med. (2020) 122:103801. doi: 10.1016/J.COMPBIOMED.2020.103801

PubMed Abstract | Crossref Full Text | Google Scholar

4. Huang Y-C, Hsu Y-C, Liu Z-Y, Lin C-H, Tsai R, Chen J-S, et al. Artificial intelligence-enabled electrocardiographic screening for left ventricular systolic dysfunction and mortality risk prediction. Front Cardiovasc Med. (2023) 10:1070641. doi: 10.3389/FCVM.2023.1070641

PubMed Abstract | Crossref Full Text | Google Scholar

5. Attia ZI, Kapa S, Lopez-Jimenez F, McKie PM, Ladewig DJ, Satam G, et al. Screening for cardiac contractile dysfunction using an artificial intelligence–enabled electrocardiogram. Nat Med. (2019) 25(1):70–4. doi: 10.1038/s41591-018-0240-2

PubMed Abstract | Crossref Full Text | Google Scholar

6. Attia ZI, Noseworthy PA, Lopez-Jimenez F, Asirvatham SJ, Deshmukh AJ, Gersh BJ, et al. An artificial intelligence-enabled ECG algorithm for the identification of patients with atrial fibrillation during sinus rhythm: a retrospective analysis of outcome prediction. Lancet. (2019) 394(10201):861–7. doi: 10.1016/S0140-6736(19)31721-0

PubMed Abstract | Crossref Full Text | Google Scholar

7. Kamga P, Mostafa R, Zafar S. The use of wearable ECG devices in the clinical setting: a review. Curr Emerg Hosp Med Rep. (2022) 10:67–72. doi: 10.1007/s40138-022-00248-x

PubMed Abstract | Crossref Full Text | Google Scholar

8. Koole MA, Kauw D, Kooiman KM, de Groot JR, Robbers-Visser D, Tulevski II, et al. An implantable loop recorder or smartphone based single-lead electrocardiogram to detect arrhythmia in adults with congenital heart disease? Front Cardiovasc Med. (2023) 9:1099014. doi: 10.3389/FCVM.2022.1099014

PubMed Abstract | Crossref Full Text | Google Scholar

9. Duncker D, Svennberg E. Editorial: wearable devices for cardiac rhythm monitoring. Front Cardiovasc Med. (2022) 9. doi: 10.3389/FCVM.2022.951769

PubMed Abstract | Crossref Full Text | Google Scholar

10. van der Zande J, Strik M, Dubois R, Ploux S, Alrub SA, Caillol T, et al. Using a smartwatch to record precordial electrocardiograms: a validation study. Sensors (Basel). (2023) 23:2555. doi: 10.3390/S23052555

PubMed Abstract | Crossref Full Text | Google Scholar

11. Provencio A, Gil MÁC. Smartwatch electrocardiogram records ST depression, premature ventricular complexes, and ventricular fibrillation. Lancet. (2022) 400(10364):e12. doi: 10.1016/S0140-6736(22)01978-X

PubMed Abstract | Crossref Full Text | Google Scholar

12. Attia ZI, Harmon DM, Dugan J, Manka L, Lopez-Jimenez F, Lerman A, et al. Prospective evaluation of smartwatch-enabled detection of left ventricular dysfunction. Nat Med. (2022) 28(12):2497–503. doi: 10.1038/s41591-022-02053-1

PubMed Abstract | Crossref Full Text | Google Scholar

13. Wagner P, Strodthoff N, Bousseljot RD, Kreiseler D, Lunze FI, Samek W, et al. PTB-XL, a large publicly available electrocardiography dataset. Sci Data. (2020) 7(1):154. doi: 10.1038/S41597-020-0495-6

PubMed Abstract | Crossref Full Text | Google Scholar

14. Goldberger AL, Amaral LA, Glass L, Hausdorff JM, Ivanov PC, Mark RG, et al. Physiobank, PhysioToolkit, and PhysioNet: components of a new research resource for complex physiologic signals. Circulation. (2000) 101(23):e215–20. doi: 10.1161/01.CIR.101.23.E215

PubMed Abstract | Crossref Full Text | Google Scholar

15. Strodthoff N, Wagner P, Schaeffter T, Samek W. Deep learning for ECG analysis: benchmarks and insights from PTB-XL. IEEE J Biomed Heal Informatics. (2021) 25:1519–28. doi: 10.1109/JBHI.2020.3022989

Crossref Full Text | Google Scholar

16. Kingma DP, Ba JL. Adam: a method for stochastic optimization. 3rd Int Conf Learn Represent ICLR 2015—Conf Track Proc 2014. published online December 22. Available at: https://arxiv.org/abs/1412.6980v9 (accessed April 19, 2023).

17. Su HY, Tsai JL, Hsu YC, Lee KH, Chang CS, Sun CK, et al. A modified cardiac triage strategy reduces door to ECG time in patients with ST elevation myocardial infarction. Sci Rep. (2021) 11(1):6358. doi: 10.1038/S41598-021-86013-8

PubMed Abstract | Crossref Full Text | Google Scholar

18. Fabris E, Arrigoni P, Falco L, Barbati G, Stolfo D, Peratoner A, et al. Impact of patient delay in a modern real world STEMI network. Am J Emerg Med. (2020) 38(6):1195–8. doi: 10.1016/j.ajem.2020.02.028

PubMed Abstract | Crossref Full Text | Google Scholar

19. Quinn T, Johnsen S, Gale CP, Snooks H, McLean S, Woollard M, et al. Effects of prehospital 12-lead ECG on processes of care and mortality in acute coronary syndrome: a linked cohort study from the Myocardial Ischaemia National Audit Project. Heart. (2014) 100:944–50. doi: 10.1136/heartjnl-2013-304599

PubMed Abstract | Crossref Full Text | Google Scholar

20. Kiehl EL, Menon V, Mandsager KT, Wolski KE, Wisniewski L, Nissen SE, et al. Effect of left ventricular conduction delay on all-cause and cardiovascular mortality (from the PRECISION trial). Am J Cardiol. (2019) 124(7):1049–55. doi: 10.1016/j.amjcard.2019.06.024

PubMed Abstract | Crossref Full Text | Google Scholar

21. Spaccarotella CAM, Polimeni A, Migliarino S, Principe E, Curcio A, Mongiardo A, et al. Multichannel electrocardiograms obtained by a smartwatch for the diagnosis of ST-segment changes. JAMA Cardiol. (2020) 5(10):1176–80. doi: 10.1001/jamacardio.2020.3994

PubMed Abstract | Crossref Full Text | Google Scholar

Keywords: artificial intelligence, deep learning, electrocardiogram, single-lead, screening

Citation: Saglietto A, Baccega D, Esposito R, Anselmino M, Dusi V, Fiandrotti A and De Ferrari GM (2024) Convolutional neural network (CNN)-enabled electrocardiogram (ECG) analysis: a comparison between standard twelve-lead and single-lead setups. Front. Cardiovasc. Med. 11:1327179. doi: 10.3389/fcvm.2024.1327179

Received: 24 October 2023; Accepted: 29 January 2024;
Published: 15 February 2024.

Edited by:

Nuno M. Garcia, University of Lisbon, Portugal

Reviewed by:

Erick Andres Perez Alday, Emory University, United States
Xiaoyun Yang, Huazhong University of Science and Technology, China
Sowmya V, Amrita Vishwa Vidyapeetham, India

© 2024 Saglietto, Baccega, Esposito, Anselmino, Dusi, Fiandrotti and De Ferrari. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Gaetano Maria De Ferrari gaetanomaria.deferrari@unito.it

These authors have contributed equally to this work and share first authorship

These authors have contributed equally to this work and share last authorship

Disclaimer: All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.