UWaveGestureLibrary
收藏NIAID Data Ecosystem2026-05-01 收录
下载链接:
https://zenodo.org/records/10852667
下载链接
链接失效反馈官方服务:
资源简介:
A set of eight simple gestures generated from accelerometers. The data consists of the X,Y,Z coordinates of each motion. Each series is 315 long.
This is a pre-processed version of the dataset saved in numpy format. The original dataset is 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("UWAVE.npz")
Xtr = loaded_data['Xtr'] # Training data of shape (200, 315, 3)
Ytr = loaded_data['Ytr'] # Training labels of shape (200, 1)
Xte = loaded_data['Xte'] # Test data of shape (428, 315, 3)
Yte = loaded_data['Yte'] # Test labels of shape (428, 1)
创建时间:
2024-03-22



