ECG 2D
收藏NIAID Data Ecosystem2026-05-01 收录
下载链接:
https://zenodo.org/record/10839880
下载链接
链接失效反馈官方服务:
资源简介:
The original version of this dataset was formatted by R. Olszewski as part of his thesis Generalized feature extraction for structural pattern recognition in time-series data at Carnegie Mellon University, 2001. Each series traces the electrical activity recorded during one heartbeat. The two classes are a normal heartbeat and a Myocardial Infarction.
This is a modified multivariate version of the dataset saved in numpy format. The original dataset was obtained from here.
The data are 3-dimensional arrays of shape [n_samples, time_steps, n_variables]. The data can be loaded as follows:
loaded_data = np.load("ECG_2D.npz")
Xtr = loaded_data['Xtr'] # Training data of shape (100, 152, 2)
Ytr = loaded_data['Ytr'] # Training labels of shape (100, 1)
Xte = loaded_data['Xte'] # Test data of shape (100, 152, 2)
Yte = loaded_data['Yte'] # Test labels of shape (100, 1)
创建时间:
2024-03-19



