├── .vscode └── settings.json ├── README.md ├── best_model.01-0.48.h5 ├── best_model.01-0.60.h5 ├── best_model.02-0.49.h5 ├── best_model.03-0.56.h5 ├── best_model.04-0.69.h5 ├── best_model.05-0.77.h5 ├── best_model.07-0.81.h5 ├── best_model.09-0.85.h5 ├── best_model.10-0.87.h5 ├── best_model.15-0.88.h5 ├── main.py └── sample_codes ├── README.txt ├── answers.txt ├── answers1.txt ├── preliminary_challenge.py ├── run.sh └── setup.sh /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/README.md -------------------------------------------------------------------------------- /best_model.01-0.48.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.01-0.48.h5 -------------------------------------------------------------------------------- /best_model.01-0.60.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.01-0.60.h5 -------------------------------------------------------------------------------- /best_model.02-0.49.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.02-0.49.h5 -------------------------------------------------------------------------------- /best_model.03-0.56.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.03-0.56.h5 -------------------------------------------------------------------------------- /best_model.04-0.69.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.04-0.69.h5 -------------------------------------------------------------------------------- /best_model.05-0.77.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.05-0.77.h5 -------------------------------------------------------------------------------- /best_model.07-0.81.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.07-0.81.h5 -------------------------------------------------------------------------------- /best_model.09-0.85.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.09-0.85.h5 -------------------------------------------------------------------------------- /best_model.10-0.87.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.10-0.87.h5 -------------------------------------------------------------------------------- /best_model.15-0.88.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/best_model.15-0.88.h5 -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/main.py -------------------------------------------------------------------------------- /sample_codes/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/sample_codes/README.txt -------------------------------------------------------------------------------- /sample_codes/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/sample_codes/answers.txt -------------------------------------------------------------------------------- /sample_codes/answers1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/sample_codes/answers1.txt -------------------------------------------------------------------------------- /sample_codes/preliminary_challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/sample_codes/preliminary_challenge.py -------------------------------------------------------------------------------- /sample_codes/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/sample_codes/run.sh -------------------------------------------------------------------------------- /sample_codes/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaosongshine/ECG_challenge_baseline_keras/HEAD/sample_codes/setup.sh --------------------------------------------------------------------------------