Breezelled commited on
Commit
28d7660
·
verified ·
1 Parent(s): 48091de

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -5
README.md CHANGED
@@ -2,12 +2,13 @@
2
  license: cc-by-nc-4.0
3
  pretty_name: AnyMo Bench
4
  task_categories:
5
- - time-series-classification
6
  tags:
7
  - human-activity-recognition
8
  - imu
9
  - wearable-sensing
10
  - time-series
 
11
  - in-the-wild
12
  - nymeria
13
  configs:
@@ -39,9 +40,9 @@ configs:
39
 
40
  # AnyMo Bench
41
 
42
- AnyMo Bench is a challenging fine-grained in-the-wild HAR benchmark built from real wearable IMU streams in the Nymeria dataset. It provides subject-disjoint and cross-device evaluation settings for wearable motion recognition.
43
 
44
- The benchmark contains 154,695 eligible activity intervals from 196 subjects, covering 211.6 hours of real in-the-wild IMU data. IMU streams are synchronized to a common 60 Hz temporal grid. Each row contains one activity segment with an `imu` array of shape `[T, 18]`, where `T <= 300` and the 18 channels concatenate one selected IMU from each of Head, Left Wrist, and Right Wrist.
45
 
46
  ## Configurations
47
 
@@ -73,7 +74,7 @@ Channel order:
73
  head_acc_x, head_acc_y, head_acc_z, head_gyro_x, head_gyro_y, head_gyro_z, left_wrist_acc_x, left_wrist_acc_y, left_wrist_acc_z, left_wrist_gyro_x, left_wrist_gyro_y, left_wrist_gyro_z, right_wrist_acc_x, right_wrist_acc_y, right_wrist_acc_z, right_wrist_gyro_x, right_wrist_gyro_y, right_wrist_gyro_z
74
  ```
75
 
76
- The exported IMU values are the processed 60 Hz benchmark windows before model-specific normalization. Shorter-than-5-second windows are not zero-padded in the Parquet files. Intervals longer than 300 timesteps are split into non-overlapping 300-timestep segments, matching the AnyMo Bench evaluation construction.
77
 
78
  ## Split Summary
79
 
@@ -86,4 +87,22 @@ The exported IMU values are the processed 60 Hz benchmark windows before model-s
86
 
87
  ## License and Source Dataset
88
 
89
- AnyMo Bench is curated from Nymeria and follows the Nymeria non-commercial research-use terms. Please cite the Nymeria dataset and the AnyMo Bench release when using this data.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: cc-by-nc-4.0
3
  pretty_name: AnyMo Bench
4
  task_categories:
5
+ - other
6
  tags:
7
  - human-activity-recognition
8
  - imu
9
  - wearable-sensing
10
  - time-series
11
+ - timeseries
12
  - in-the-wild
13
  - nymeria
14
  configs:
 
40
 
41
  # AnyMo Bench
42
 
43
+ AnyMo Bench is a challenging fine-grained in-the-wild HAR benchmark built from real wearable IMU streams in the Nymeria dataset. It provides unseen-subject and cross-device evaluation settings for wearable motion recognition.
44
 
45
+ The benchmark contains 154,695 eligible activity windows from 196 subjects, covering 211.6 hours of real in-the-wild IMU data. IMU streams are synchronized to a common 60 Hz temporal grid. Each row contains one activity window with an `imu` array of shape `[T, 18]`, where `T <= 300` and the 18 channels concatenate one selected IMU from each of Head, Left Wrist, and Right Wrist.
46
 
47
  ## Configurations
48
 
 
74
  head_acc_x, head_acc_y, head_acc_z, head_gyro_x, head_gyro_y, head_gyro_z, left_wrist_acc_x, left_wrist_acc_y, left_wrist_acc_z, left_wrist_gyro_x, left_wrist_gyro_y, left_wrist_gyro_z, right_wrist_acc_x, right_wrist_acc_y, right_wrist_acc_z, right_wrist_gyro_x, right_wrist_gyro_y, right_wrist_gyro_z
75
  ```
76
 
77
+ The exported IMU values are the processed 60 Hz benchmark windows before model-specific normalization. Shorter-than-5-second windows are not zero-padded in the Parquet files. Windows longer than 300 timesteps are split into non-overlapping 300-timestep segments, matching the AnyMo Bench evaluation construction.
78
 
79
  ## Split Summary
80
 
 
87
 
88
  ## License and Source Dataset
89
 
90
+ AnyMo Bench is curated from Nymeria and follows the Nymeria non-commercial research-use terms. Please cite the Nymeria dataset and AnyMo when using this data.
91
+
92
+ ```bibtex
93
+ @article{chen2026anymo,
94
+ title={AnyMo: Geometry-Aware Setup-Agnostic Modeling of Human Motion in the Wild},
95
+ author={Chen, Baiyu and Li, Zechen and Wongso, Wilson and Li, Lihuan and Lin, Xiachong and Xue, Hao and Tag, Benjamin and Salim, Flora},
96
+ journal={arXiv preprint arXiv:2605.22715},
97
+ year={2026}
98
+ }
99
+
100
+ @inproceedings{ma2024nymeria,
101
+ title={Nymeria: A massive collection of multimodal egocentric daily motion in the wild},
102
+ author={Ma, Lingni and Ye, Yuting and Hong, Fangzhou and Guzov, Vladimir and Jiang, Yifeng and Postyeni, Rowan and Pesqueira, Luis and Gamino, Alexander and Baiyya, Vijay and Kim, Hyo Jin and others},
103
+ booktitle={European Conference on Computer Vision},
104
+ pages={445--465},
105
+ year={2024},
106
+ organization={Springer}
107
+ }
108
+ ```