emgbenchanon commited on
Commit
68416c1
·
verified ·
1 Parent(s): 47e3d3c

Update README: document train/val split (336 + 80)

Browse files
Files changed (1) hide show
  1. README.md +33 -6
README.md CHANGED
@@ -19,38 +19,65 @@ pretty_name: MUniverse Dynamic EMG Benchmark v2
19
 
20
  # MUniverse Dynamic EMG Benchmark v2
21
 
22
- **336 synthetic non-stationary surface EMG recordings** for benchmarking motor-unit decomposition algorithms under dynamic joint motion. 21 motor-unit pool combinations (26–113 MUs) × 5 simulated subjects × 7 forearm muscles × 8 conditions (sinusoidal/triangular wrist FlexionExtension at two amplitudes × two SNR levels), at 70-ch and 320-ch electrode configurations.
 
 
23
 
24
  ## Files
25
 
26
  | File | Size | Purpose |
27
  |---|---|---|
28
- | `recordings.tar.gz` | 4.7 GB | The 336 `.npz` recordings (`benchmark_v2/{ch070,ch320}/`) |
 
29
  | `reproducibility_bundle.zip` | 36 KB | Scripts, manifests, NeuroMotion patch, PBS templates |
30
  | `benchmark_spec.json` | 7 KB | Declarative spec: subjects, muscles, conditions, combos |
31
- | `README.md` | 8 KB | This page (also inside the bundle, as the canonical reproduction guide) |
32
 
33
  SHA256:
34
  - `recordings.tar.gz`: `715458efd70ca8932e1e45a642698fa11a4446e0352dbe1840e0a7e251544f56`
 
35
  - `reproducibility_bundle.zip`: `f4e034726a5c2afd60f408d3e32d63be074a586235316c38926feafd3d3e0988`
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  ## Quick load
38
 
39
  ```python
40
  import numpy as np
 
 
41
  d = np.load("benchmark_v2/ch320/SA10-hi_ECU_sub03_N055.npz", allow_pickle=True)
42
- emg = d["emg"] # (T, 320) float32
 
 
 
 
43
  spike_mu_0 = d["spike_mu_0"] # (n_spikes,) int64 — ground-truth indices
44
  angle_profile = d["angle_profile"] # (T,) joint angle in degrees
45
  effort_profile = d["effort_profile"] # (T,) effort, fraction MVC
46
  fs = int(d["fs"]) # 2048
47
  ```
48
 
49
- See `benchmark_spec.json` for the full parameter grid (8 conditions × 21 combos × 2 channel configs = 336).
50
 
51
  ## Reproduction
52
 
53
- The dataset is fully reproducible from open code: NeuroMotion + BioMime → MUAP libraries → crosstalk filtering → NeuroMotion synthesis. Stage-by-stage scripts and PBS templates are inside `reproducibility_bundle.zip`. The original README (which lives at `experiments/v2/README.md` inside the bundle) walks through all five stages.
54
 
55
 
56
  ---
 
19
 
20
  # MUniverse Dynamic EMG Benchmark v2
21
 
22
+ **416 synthetic non-stationary surface EMG recordings** for benchmarking motor-unit decomposition algorithms under dynamic joint motion. Split into **336 train** (subjects 0–4, 21 MU pools) and **80 held-out val** (subjects 59, 5 MU pools) different simulated subjects, so the val set is a clean generalisation test.
23
+
24
+ Both splits share the same 8 conditions (sinusoidal/triangular wrist Flexion–Extension at two amplitudes × two SNR levels) and ship at 70-ch and 320-ch electrode configurations.
25
 
26
  ## Files
27
 
28
  | File | Size | Purpose |
29
  |---|---|---|
30
+ | `recordings.tar.gz` | 4.7 GB | **Train**: 336 `.npz` recordings, subjects 0–4, 21 MU pools (`benchmark_v2/{ch070,ch320}/`) |
31
+ | `recordings_val.tar.gz` | 1.2 GB | **Val**: 80 `.npz` recordings, subjects 5–9, 5 MU pools (`benchmark_v2_val/{ch070,ch320}/`) |
32
  | `reproducibility_bundle.zip` | 36 KB | Scripts, manifests, NeuroMotion patch, PBS templates |
33
  | `benchmark_spec.json` | 7 KB | Declarative spec: subjects, muscles, conditions, combos |
34
+ | `README.md` | this page | (also inside the bundle, as the canonical reproduction guide) |
35
 
36
  SHA256:
37
  - `recordings.tar.gz`: `715458efd70ca8932e1e45a642698fa11a4446e0352dbe1840e0a7e251544f56`
38
+ - `recordings_val.tar.gz`: `e4a14c291f4087a90ee10a376b57c359e3507ba4cdd68bb94b6f7b9aa6cc3756`
39
  - `reproducibility_bundle.zip`: `f4e034726a5c2afd60f408d3e32d63be074a586235316c38926feafd3d3e0988`
40
 
41
+ ## Splits
42
+
43
+ | Split | Subjects | Pools | Recordings (per ch config) | Recordings total |
44
+ |---|---|---|---|---|
45
+ | Train | seeds 0–4 (5 subjects) | 21 (6 small + 8 medium + 7 large) | 168 | **336** |
46
+ | Val | seeds 5–9 (5 subjects) | 5 (1 small + 2 medium + 2 large) | 40 | **80** |
47
+
48
+ Subjects 5–9 are completely disjoint from training subjects, sampled from the same NeuroMotion+BioMime generator with the same fiber-density distribution. Val combos:
49
+
50
+ | Tier | Subject | Muscle | Threshold | N MUs |
51
+ |---|---|---|---|---|
52
+ | small | sub5 | PL | 0.85 | 29 |
53
+ | medium | sub6 | ECU | 0.85 | 50 |
54
+ | medium | sub7 | EDI | 0.85 | 62 |
55
+ | large | sub8 | FCU_u | 0.85 | 79 |
56
+ | large | sub9 | ECRB | 0.90 | 92 |
57
+
58
  ## Quick load
59
 
60
  ```python
61
  import numpy as np
62
+
63
+ # Train recording
64
  d = np.load("benchmark_v2/ch320/SA10-hi_ECU_sub03_N055.npz", allow_pickle=True)
65
+
66
+ # Val recording
67
+ d = np.load("benchmark_v2_val/ch320/SA10-hi_ECU_sub06_N050.npz", allow_pickle=True)
68
+
69
+ emg = d["emg"] # (T, M) float32
70
  spike_mu_0 = d["spike_mu_0"] # (n_spikes,) int64 — ground-truth indices
71
  angle_profile = d["angle_profile"] # (T,) joint angle in degrees
72
  effort_profile = d["effort_profile"] # (T,) effort, fraction MVC
73
  fs = int(d["fs"]) # 2048
74
  ```
75
 
76
+ See `benchmark_spec.json` for the full parameter grid.
77
 
78
  ## Reproduction
79
 
80
+ The dataset is fully reproducible from open code: NeuroMotion + BioMime → MUAP libraries → crosstalk filtering → NeuroMotion synthesis. Stage-by-stage scripts and PBS templates are inside `reproducibility_bundle.zip`. The val split was generated with the same pipeline using seeds 5–9 instead of 0–4. The original README inside the bundle walks through all five stages.
81
 
82
 
83
  ---