Alaaharoun commited on
Commit
9a25dc1
·
verified ·
1 Parent(s): 66bbb56

Add walking sample + dataset card

Browse files
Files changed (7) hide show
  1. README.md +61 -0
  2. README_sample.md +19 -0
  3. data.jsonl +0 -0
  4. export_quality_report.json +20 -0
  5. features.json +33 -0
  6. global_stats.json +21 -0
  7. manifest.json +22 -0
README.md CHANGED
@@ -1,3 +1,64 @@
1
  ---
2
  license: cc-by-nc-4.0
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - pose-estimation
7
+ - walking
8
+ - 2d-pose
9
+ - mediapipe
10
+ - motion-dataset
11
+ - quality-vision
12
+ pretty_name: QualityVision Walking Sample (2D pose)
13
+ size_categories:
14
+ - n<1K
15
  ---
16
+
17
+ # QualityVision Walking Sample
18
+
19
+ **High-quality 2D pose estimation** sample for **walking**, exported from the [Quality Vision Motion Dataset Engine](https://github.com/Alaaharoun/QualityVision-Motion-Dataset-Samples) pipeline: **HQ frame filtering**, optional **temporal smoothing** on accepted frames, and **sequence diagnostics** in `features.json`.
20
+
21
+ ## Files
22
+
23
+ | File | Description |
24
+ |------|-------------|
25
+ | `data.jsonl` | One JSON object per line: normalized image-space keypoints, timestamps, optional Layer 1.1 metadata. |
26
+ | `features.json` | Sequence-level aggregates (visibility, hip motion, `motion_consistency`). |
27
+ | `global_stats.json` | Job-level roll-up for this clip. |
28
+ | `manifest.json` | Export metadata (format compatible with the Motion Dataset Engine). |
29
+ | `export_quality_report.json` | Pilot-oriented quality summary. |
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ from datasets import load_dataset
35
+
36
+ # If you load as JSON lines:
37
+ ds = load_dataset("Alaaharoun/QualityVision-walking-sample", data_files="data.jsonl", split="train")
38
+ ```
39
+
40
+ Or download raw files:
41
+
42
+ ```python
43
+ from huggingface_hub import hf_hub_download
44
+ path = hf_hub_download(
45
+ repo_id="Alaaharoun/QualityVision-walking-sample",
46
+ filename="data.jsonl",
47
+ repo_type="dataset",
48
+ )
49
+ ```
50
+
51
+ ## License
52
+
53
+ **CC BY-NC 4.0** — see repository `LICENSE` on [GitHub](https://github.com/Alaaharoun/QualityVision-Motion-Dataset-Samples). Commercial use outside NC terms requires a separate agreement.
54
+
55
+ ## Citation
56
+
57
+ ```bibtex
58
+ @misc{qualityvision_walking_sample,
59
+ title = {QualityVision Walking Sample (2D Pose)},
60
+ author = {Alaaharoun},
61
+ howpublished = {\url{https://huggingface.co/datasets/Alaaharoun/QualityVision-walking-sample}},
62
+ year = {2026},
63
+ }
64
+ ```
README_sample.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # `walking_sample_v1`
2
+
3
+ | File | Description |
4
+ |------|-------------|
5
+ | `data.jsonl` | 80 consecutive frames, one JSON object per line (primary person `keypoints`, optional `layer11`, `source_video_fps`, etc.). |
6
+ | `features.json` | Sequence-level aggregates (visibility, hip motion, `motion_consistency`, stride proxies). |
7
+ | `global_stats.json` | Job-level roll-up for this clip. |
8
+ | `manifest.json` | Metadata aligned with the Motion Dataset Engine export format. |
9
+ | `export_quality_report.json` | Pilot-oriented summary + pointers to formulas. |
10
+
11
+ **Coordinate system:** normalized image coordinates (typically ~0–1 for x/y), z relative depth as exported by the engine.
12
+
13
+ **Not included:** raw video, full ZIP checksums, or rejected frames — this repo is intentionally small for GitHub hosting and feedback collection.
14
+
15
+ To regenerate a pose preview image, run from the repository root:
16
+
17
+ ```bash
18
+ python scripts/render_pose_preview.py
19
+ ```
data.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
export_quality_report.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "walking_sample_v1",
3
+ "purpose": "free_public_pilot",
4
+ "frames_included": 80,
5
+ "engine": "Quality Vision Motion Dataset Engine",
6
+ "pipeline_summary": "2D pose (MediaPipe-style landmarks), HQ visibility/motion gate, body-part diagnostics; parent job used optional temporal smoothing on accepted frames.",
7
+ "sequence_metrics": {
8
+ "quality_score": 0.6328,
9
+ "mean_avg_landmark_visibility": 0.770697,
10
+ "motion_consistency": 0.494943,
11
+ "motion_consistency_method": "blend_smoothed_cv_mad_v1",
12
+ "short_sequence_motion_warning": false
13
+ },
14
+ "documentation": {
15
+ "repository": "https://github.com/Alaaharoun/QualityVision-Motion-Dataset-Samples",
16
+ "per_frame_scores": "See Motion Dataset Engine: weighted visibility + lower-body + motion_local (action-aware nudge).",
17
+ "sequence_scores": "See features.json sequence block; motion_consistency blends smoothed step-length CV with a MAD/median robust term."
18
+ },
19
+ "license": "CC-BY-NC-4.0 for this sample distribution; commercial use requires a separate agreement (see docs/EULA.md)."
20
+ }
features.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "1.2.1",
3
+ "job_id": "qv_walking_sample_v1",
4
+ "sequence": {
5
+ "frame_count": 80,
6
+ "action_label": "walking",
7
+ "avg_landmark_visibility": 0.770697,
8
+ "hip_center_displacement_mean_norm": 0.014724,
9
+ "hip_center_path_sum_norm": 1.163219,
10
+ "inter_frame_steps": 79,
11
+ "velocity_proxy_available": true,
12
+ "velocity_mean": 0.014724,
13
+ "velocity_std": 0.010937,
14
+ "velocity_cv_raw": 0.742789,
15
+ "hip_velocity_smooth_window": 3,
16
+ "velocity_mean_smoothed": 0.014721,
17
+ "velocity_std_smoothed": 0.008312,
18
+ "velocity_cv_smoothed": 0.564646,
19
+ "velocity_cv_mad": 0.394393,
20
+ "motion_consistency_cv_smoothed": 0.435354,
21
+ "motion_consistency_mad": 0.605607,
22
+ "motion_consistency_blend_cv_weight": 0.65,
23
+ "short_sequence_motion_warning": false,
24
+ "acceleration_mean": 0.008273,
25
+ "avg_stride_length": 0.038663,
26
+ "body_height_norm": 0.351658,
27
+ "arm_swing_amplitude": 0.086108,
28
+ "step_frequency": 24.6875,
29
+ "motion_consistency": 0.494943,
30
+ "motion_consistency_method": "blend_smoothed_cv_mad_v1"
31
+ },
32
+ "notes": "norm = image-normalized coordinates (0–1); x/y clamped at export. Hip displacement is Euclidean distance in normalized space between consecutive exported frames. motion_consistency blends (1) stability of CV on a short moving-average of step lengths (reduces pose jitter) and (2) a robust MAD/median term (less harsh than raw std/mean on periodic gait). Raw velocity_cv can still be high for natural walking; prefer smoothed + MAD components. short_sequence_motion_warning=true when inter_frame_steps is below the configured threshold — sequence-level quality is less reliable for imitation learning. For higher motion_consistency in exports: lower stride, longer clips, walking_focused preset, temporal smoothing on accepted frames. stride_length = mean horizontal ankle separation per frame. body_height_norm = mean |nose.y − mid(ankles).y|. step_frequency ≈ hip displacement steps per second of source timeline."
33
+ }
global_stats.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "1.2.1",
3
+ "job_id": "qv_walking_sample_v1",
4
+ "video_filename": "walking_uhd_sample.mp4",
5
+ "fps": 25.0,
6
+ "stride": 3,
7
+ "exported_frames": 80,
8
+ "max_frame_id": 79,
9
+ "estimated_source_duration_sec": 3.2,
10
+ "fps_mean": 25.0,
11
+ "avg_sequence_length": 80,
12
+ "action_distribution": {
13
+ "walking": 80
14
+ },
15
+ "quality_score": 0.6328,
16
+ "artifacts": {
17
+ "per_frame_records": "data.jsonl",
18
+ "sequence_features": "features.json",
19
+ "job_manifest": "manifest.json"
20
+ }
21
+ }
manifest.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "1.0.0",
3
+ "job_id": "qv_walking_sample_v1",
4
+ "video_filename": "walking_uhd_sample.mp4",
5
+ "fps": 25.0,
6
+ "frame_count_exported": 80,
7
+ "stride": 3,
8
+ "action_label": "walking",
9
+ "augmentations_applied": [],
10
+ "license": "CC-BY-NC-4.0",
11
+ "consent": true,
12
+ "notes": "Public pilot sample (80 frames). Produced with the Quality Vision Motion Dataset Engine: HQ frame filter, optional temporal smoothing on accepted frames in the parent export, body-part diagnostics. Filename is illustrative; coordinates are image-normalized. See repository README and docs/EULA.md.",
13
+ "dataset_format": "pose_estimation_sequence_dataset",
14
+ "export_manifest_version": "1.1",
15
+ "bulk_export": false,
16
+ "source_video_filenames": ["walking_uhd_sample.mp4"],
17
+ "hq_export": true,
18
+ "quality_filter": {
19
+ "enabled": true,
20
+ "description": "Subset taken from a longer HQ-filtered export; frames renumbered 0–79 for this sample."
21
+ }
22
+ }