Coder Social home page Coder Social logo

zeigar / automatic-ecg-diagnosis Goto Github PK

View Code? Open in Web Editor NEW

This project forked from antonior92/automatic-ecg-diagnosis

0.0 1.0 0.0 850 KB

Scripts and modules for training and testing neural network for ECG automatic classification. Companion code to the paper "Automatic diagnosis of the 12-lead ECG using a deep neural network".

Home Page: https://www.nature.com/articles/s41467-020-15432-4

License: MIT License

Python 100.00%

automatic-ecg-diagnosis's Introduction

Automatic ECG diagnosis using a deep neural network

Scripts and modules for training and testing deep neural networks for ECG automatic classification. Companion code to the paper "Automatic diagnosis of the 12-lead ECG using a deep neural network". https://www.nature.com/articles/s41467-020-15432-4.


Citation:

Ribeiro, A.H., Ribeiro, M.H., Paixão, G.M.M. et al. Automatic diagnosis of the 12-lead ECG using a deep neural network.
Nat Commun 11, 1760 (2020). https://doi.org/10.1038/s41467-020-15432-4

Bibtex:

@article{ribeiro_automatic_2020,
  title = {Automatic Diagnosis of the 12-Lead {{ECG}} Using a Deep Neural Network},
  author = {Ribeiro, Ant{\^o}nio H. and Ribeiro, Manoel Horta and Paix{\~a}o, Gabriela M. M. and Oliveira, Derick M. and Gomes, Paulo R. and Canazart, J{\'e}ssica A. and Ferreira, Milton P. S. and Andersson, Carl R. and Macfarlane, Peter W. and Meira Jr., Wagner and Sch{\"o}n, Thomas B. and Ribeiro, Antonio Luiz P.},
  year = {2020},
  volume = {11},
  pages = {1760},
  doi = {https://doi.org/10.1038/s41467-020-15432-4},
  journal = {Nature Communications},
  number = {1}
}

Requirements

This code was tested on Python 3 with Tensorflow 2.2. There is an older branch (tensorflow-v1) that contain the code implementation for Tensorflow 1.15.

Model

The model used in the paper is a residual neural. The neural network architecture implementation in Keras is available in model.py. To print a summary of the model layers run:

$ python model.py

resnet

The model receives an input tensor with dimension (N, 4096, 12), and returns an output tensor with dimension (N, 6), for which N is the batch size.

The model can be trained using the script train.py. Alternatively, pre-trained weighs for the models described in the paper are also available in: https://doi.org/10.5281/zenodo.3625017. Or in the mirror dropbox link here.
Using the command line, the weights can be downloaded using

wget https://www.dropbox.com/s/5ar6j8u9v9a0rmh/model.zip?dl=0 -O model.zip
unzip model.zip
  • input: shape = (N, 4096, 12). The input tensor should contain the 4096 points of the ECG tracings sampled at 400Hz (i.e., a signal of approximately 10 seconds). Both in the training and in the test set, when the signal was not long enough, we filled the signal with zeros, so 4096 points were attained. The last dimension of the tensor contains points of the 12 different leads. The leads are ordered in the following order: {DI, DII, DIII, AVR, AVL, AVF, V1, V2, V3, V4, V5, V6}. All signal are represented as 32 bits floating point numbers at the scale 1e-4V: so if the signal is in V it should be multiplied by 1000 before feeding it to the neural network model.

  • output: shape = (N, 6). Each entry contains a probability between 0 and 1, and can be understood as the probability of a given abnormality to be present. The abnormalities it predicts are (in that order): 1st degree AV block(1dAVb), right bundle branch block (RBBB), left bundle branch block (LBBB), sinus bradycardia (SB), atrial fibrillation (AF), sinus tachycardia (ST). The abnormalities are not mutually exclusive, so the probabilities do not necessarily sum to one.

abnormalities

Test data

The testing dataset described in the paper can be downloaded from: https://doi.org/10.5281/zenodo.3625006. Or in the mirror dropbox link here. Using the command line:

wget https://www.dropbox.com/s/p3vd3plcbu9sf1o/data.zip?dl=0 -O data.zip
unzip data.zip

Training data

Restrictions apply to the availability of the training set used in the paper. Requests to access the training data will be considered on an individual basis by the Telehealth Network of Minas Gerais. https://forms.gle/BLoBCfTFkaDw7KGq5.

Scripts

  • train.py: Script for training the neural network. To train the neural network run:
$ python train.py PATH_TO_HDF5 PATH_TO_CSV

Pre-trained models obtained using such script can be downloaded from here

  • predict.py: Script for generating the neural network predictions on a given dataset.
$ python predict.py PATH_TO_HDF5_ECG_TRACINGS PATH_TO_MODEL  --ouput_file PATH_TO_OUTPUT_FILE 

The folder ./dnn_predicts contain the output obtained by applying this script to the models available in here to make the predictions on tracings from this test dataset.

  • generate_figures_and_tables.py: Generate figures and tables from the paper "Automatic Diagnosis o the Short-Duration12-Lead ECG using a Deep Neural Network". Make sure to execute the script from the root folder, so all relative paths are correct. So first run:
$ cd /path/to/automatic-ecg-diagnosis

Then the script

$ python generate_figures_and_tables.py

It should generate the tables and figure in the folder outputs/

  • model.py: Auxiliary module that defines the architecture of the deep neural network. To print a summary of the model layers run:
$ python model.py

automatic-ecg-diagnosis's People

Contributors

antonior92 avatar dependabot[bot] avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.