References ========== This page is meant to be a centralized source of information for ECGAN. This includes #. a list of abbreviations used in the code and documentation, #. distinctions between terms used, #. references to papers, repositories and other information from external sources. The references are usually also included as source in the implementation. Related Work ------------ Data ~~~~~ #. MITBIH (`Moody and Mark, 2001 `_, `MITBIH Website `_): a. Original MITBIH (no additional preprocessing, binary classification from kaggle): `Original MITBIH Dataset `_ b. MITBIH per-beat, classes according to AAMI (non-binary by default): `Kachuee et al. 2018 `_, `Preprocessed MITBIH Dataset `_ c. MITBIH BeatGAN: per-beat, centered, standardized, classes according to AAMI (non-binary), removed some patients: `Zhou et al. 2019 `_, `Dataset `_, `Repository `_ #. Shaoxing (`Zheng et al. 2020 `_, `Shaoxing Dataset `_) #. Not supported but also of relevance: PTB (`Bousseljot et al. 1995 `_) and PTB-XL (`Wagner et al. 2020 `_). Related Modules ~~~~~~~~~~~~~~~ #. Generative Models #. DCGAN: Paper: `Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks, Radford et al. 2015 `_, Repository: `DCGAN GitHub `_ #. RGAN: Paper: `Real-valued (Medical) Time Series Generation with Recurrent Conditional GANs, Esteban et al. 2017 `_, Repository: `RGAN GitHub `_ #. BeatGAN: Paper: `BeatGAN: Anomalous Rhythm Detection using Adversarially Generated Time Series, Zhou et al. 2019 `_, Repository: `BeatGAN Github `_ #. VaeGAN: BeatGAN as well as "Survival-oriented embeddings with application to CT scans of colorectal carcinoma patients with liver metastases" by Tobias Weber, 2021. The modules have received significant improvements, often inspired by more recent developments. This especially includes: #. The Wasserstein distance (including gradient penalties) as objective function. Papers: `Wasserstein GAN, Arjovsky et al. 2017 `_ and `Improved Training of Wasserstein GANs, Gulrajani et al. 2017 (WGAN-GP) `_ #. Spectral norm as weight normalization (usually instead of input normalization in respective layers): `Spectral Normalization for Generative Adversarial Networks, Miyato et al. 2018 `_ #. Anomaly detection #. AnoGAN: Optimization of latent variables towards similar samples, Paper: `Schlegl et al. 2017 `_ .