├── Dockerfile ├── LICENSE ├── README.md ├── evaluate_model.py ├── helper_code.py ├── prepare_code15_data.py ├── prepare_ptbxl_data.py ├── prepare_samitrop_data.py ├── requirements.txt ├── run_model.py ├── team_code.py └── train_model.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/README.md -------------------------------------------------------------------------------- /evaluate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/evaluate_model.py -------------------------------------------------------------------------------- /helper_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/helper_code.py -------------------------------------------------------------------------------- /prepare_code15_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/prepare_code15_data.py -------------------------------------------------------------------------------- /prepare_ptbxl_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/prepare_ptbxl_data.py -------------------------------------------------------------------------------- /prepare_samitrop_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/prepare_samitrop_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/run_model.py -------------------------------------------------------------------------------- /team_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/team_code.py -------------------------------------------------------------------------------- /train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/physionetchallenges/python-example-2025/HEAD/train_model.py --------------------------------------------------------------------------------