├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── codes ├── cardiogan_realtime.py ├── layers.py ├── module.py ├── preprocessing.py ├── test_cardiogan.py └── tflib.py └── images ├── cardiogan_demo_public.jpg ├── merged_cardiogan.svg └── ppg2ecg_fast.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .spyproject/ 3 | weights/ 4 | temp* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | markdown: GFM 2 | title: CardioGAN 3 | -------------------------------------------------------------------------------- /codes/cardiogan_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/codes/cardiogan_realtime.py -------------------------------------------------------------------------------- /codes/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/codes/layers.py -------------------------------------------------------------------------------- /codes/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/codes/module.py -------------------------------------------------------------------------------- /codes/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/codes/preprocessing.py -------------------------------------------------------------------------------- /codes/test_cardiogan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/codes/test_cardiogan.py -------------------------------------------------------------------------------- /codes/tflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/codes/tflib.py -------------------------------------------------------------------------------- /images/cardiogan_demo_public.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/images/cardiogan_demo_public.jpg -------------------------------------------------------------------------------- /images/merged_cardiogan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/images/merged_cardiogan.svg -------------------------------------------------------------------------------- /images/ppg2ecg_fast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritamqu/ppg2ecg-cardiogan/HEAD/images/ppg2ecg_fast.gif --------------------------------------------------------------------------------