Scan2s commited on
Commit
0040e87
·
verified ·
1 Parent(s): c65d015

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -2
README.md CHANGED
@@ -3,7 +3,6 @@ license: cc-by-4.0
3
  task_categories:
4
  - tabular-classification
5
  - robotics
6
- - time-series-forecasting
7
  tags:
8
  - imu
9
  - biomechanics
@@ -18,4 +17,91 @@ tags:
18
  pretty_name: NinaPro DB5 — S2S Physics Certified
19
  size_categories:
20
  - 1K<n<10K
21
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  task_categories:
4
  - tabular-classification
5
  - robotics
 
6
  tags:
7
  - imu
8
  - biomechanics
 
17
  pretty_name: NinaPro DB5 — S2S Physics Certified
18
  size_categories:
19
  - 1K<n<10K
20
+ ---
21
+
22
+ # NinaPro DB5 — S2S Physics Certified (v1.7.0)
23
+
24
+ Physics-certified windows from NinaPro DB5 forearm EMG+IMU dataset.
25
+ Each window validated against **8 biomechanical laws** using [S2S](https://github.com/timbo4u1/S2S).
26
+
27
+ **Bad training data costs you months. S2S finds it in milliseconds.**
28
+
29
+ ## What this adds
30
+
31
+ | Column | Description |
32
+ |---|---|
33
+ | `tier` | GOLD / SILVER / BRONZE / REJECTED |
34
+ | `score` | 0–100 physics compliance score |
35
+ | `laws_passed` | Which of 8 laws passed |
36
+ | `verdict` | Human-readable quality statement |
37
+ | `recommendation` | Actionable engineering guidance |
38
+ | `wavelet_signal_type` | biological / mechanical_synthetic / random_noise |
39
+ | `wavelet_cv` | Energy drift CV (real human: 0.15–1.5) |
40
+ | `wavelet_entropy` | Spectral entropy (biological: 0.75–0.96) |
41
+ | `issues` | Specific failures with hardware fix suggestions |
42
+
43
+ ## Statistics
44
+
45
+ | Metric | Value |
46
+ |---|---|
47
+ | Windows | 1,500 |
48
+ | Subjects | 10 |
49
+ | Sample rate | 2000Hz |
50
+ | Window size | 500 samples (250ms) |
51
+ | GOLD | 109 (7.3%) |
52
+ | SILVER | 1,388 (92.5%) |
53
+ | BRONZE | 3 (0.2%) |
54
+ | REJECTED | 0 |
55
+
56
+ ## Quick start
57
+
58
+ ```python
59
+ import pandas as pd
60
+
61
+ df = pd.read_csv("ninapro_db5_certified.csv")
62
+
63
+ # High quality windows only
64
+ train = df[df['tier'].isin(['GOLD', 'SILVER'])]
65
+
66
+ # Confirmed biological signal
67
+ bio = df[df['wavelet_signal_type'] == 'biological']
68
+
69
+ # Score threshold
70
+ high = df[df['score'] >= 70]
71
+ ```
72
+
73
+ ## The 8 Physics Laws
74
+
75
+ | Law | What it catches |
76
+ |---|---|
77
+ | Newton F=ma | EMG-acceleration timing mismatch |
78
+ | Segment Resonance | Non-physiological tremor frequency |
79
+ | Rigid Body Kinematics | Decoupled accelerometer/gyroscope |
80
+ | Ballistocardiography | Missing heartbeat signal in IMU |
81
+ | Joule Heating | EMG-thermal mismatch |
82
+ | Motor Control Jerk | Superhuman motion (>500 m/s³) |
83
+ | IMU Consistency | Independent signal generators |
84
+ | Inter-window Continuity | Teleportation / data splices |
85
+
86
+ ## Source dataset
87
+
88
+ Original NinaPro DB5: https://ninapro.hevs.ch/instructions/DB5.html
89
+
90
+ 10 subjects, forearm EMG (16ch) + accelerometer (3ch) at 2000Hz.
91
+
92
+ ## Certification engine
93
+
94
+ ```bash
95
+ pip install s2s-certify
96
+ ```
97
+
98
+ ```python
99
+ from s2s_standard_v1_3.s2s_physics_v1_3 import PhysicsEngine, audit_report
100
+
101
+ engine = PhysicsEngine()
102
+ result = engine.certify(imu_raw=window, segment='forearm')
103
+ report = audit_report(result)
104
+ print(report['verdict'])
105
+ ```
106
+
107
+ github.com/timbo4u1/S2S | DOI: 10.5281/zenodo.18878307