Pamap2 Dataset Preprocessed V0.2.0
收藏资源简介:
# Processed PAMAP2 dataset<br> This dataset is based on the [PAMAP2 Dataset for Physical Activity Monitoring](https://archive.ics.uci.edu/ml/datasets/PAMAP2+Physical+Activity+Monitoring). The data is processed with the code from [this script](https://github.com/NLeSC/mcfly-tutorial/blob/master/tutorial/tutorial_pamap2.py), with the following function call: ```python<br> columns_to_use = ['hand_acc_16g_x', 'hand_acc_16g_y', 'hand_acc_16g_z',<br> 'ankle_acc_16g_x', 'ankle_acc_16g_y', 'ankle_acc_16g_z',<br> 'chest_acc_16g_x', 'chest_acc_16g_y', 'chest_acc_16g_z']<br> exclude_activities = [9, 10, 11, 18, 19, 20, 0]<br> outputpath = tutorial_pamap2.fetch_and_preprocess(directory_to_extract_to,<br> columns_to_use,<br> exclude_activities=exclude_activities,<br> val_test_size=(100, 1000))<br> ``` ## References<br> A. Reiss and D. Stricker. Introducing a New Benchmarked Dataset for Activity Monitoring. The 16th IEEE International Symposium on Wearable Computers (ISWC), 2012.



