meghna2801 commited on
Commit
7c1a495
·
verified ·
1 Parent(s): 01cdecf

Upload 2 files

Browse files
Files changed (2) hide show
  1. dataset_info.json +39 -0
  2. label_mapping.json +79 -0
dataset_info.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "AI Skating Coach - Clean 64-Class",
3
+ "version": "1.0",
4
+ "description": "Figure skating element recognition with 64 classes including multi-jump combinations",
5
+ "total_samples": 5168,
6
+ "train_samples": 4161,
7
+ "test_samples": 1007,
8
+ "split_ratio": "80/20",
9
+ "num_classes": 64,
10
+ "sequence_length": 150,
11
+ "num_keypoints": 17,
12
+ "coordinates_per_keypoint": 3,
13
+ "duration_seconds": 5.0,
14
+ "fps": 30,
15
+ "keypoint_format": "COCO 17-point",
16
+ "data_characteristics": {
17
+ "no_augmentation": true,
18
+ "no_class_weights": true,
19
+ "no_synthetic_samples": true,
20
+ "combinations_preserved": true,
21
+ "format": "Pickle (NumPy-compatible, list of arrays)"
22
+ },
23
+ "data_sources": [
24
+ "MMFS Dataset: 2D pose from competition videos (4,915 sequences)",
25
+ "JSON Motion Capture: Professional 3D mocap (253 sequences)"
26
+ ],
27
+ "preprocessing_steps": [
28
+ "Format unification (142-marker mocap \u2192 17-keypoint COCO)",
29
+ "Temporal uniform sampling to 150 frames",
30
+ "Coordinate normalization to [-1, 1]",
31
+ "Velocity feature computation",
32
+ "80/20 stratified train/test split"
33
+ ],
34
+ "keypoint_definitions": {
35
+ "0-4": "Head (nose, left_eye, right_eye, left_ear, right_ear)",
36
+ "5-10": "Upper body (left_shoulder, right_shoulder, left_elbow, right_elbow, left_wrist, right_wrist)",
37
+ "11-16": "Lower body (left_hip, right_hip, left_knee, right_knee, left_ankle, right_ankle)"
38
+ }
39
+ }
label_mapping.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "mmfs_labels": [
3
+ 0,
4
+ 1,
5
+ 2,
6
+ 3,
7
+ 4,
8
+ 5,
9
+ 6,
10
+ 7,
11
+ 8,
12
+ 9,
13
+ 10,
14
+ 11,
15
+ 12,
16
+ 13,
17
+ 14,
18
+ 15,
19
+ 16,
20
+ 17,
21
+ 18,
22
+ 19,
23
+ 20,
24
+ 21,
25
+ 22,
26
+ 23,
27
+ 24,
28
+ 25,
29
+ 26,
30
+ 27,
31
+ 28,
32
+ 29,
33
+ 30,
34
+ 31,
35
+ 32,
36
+ 33,
37
+ 34,
38
+ 35,
39
+ 36,
40
+ 37,
41
+ 38,
42
+ 39,
43
+ 40,
44
+ 41,
45
+ 42,
46
+ 43,
47
+ 44,
48
+ 45,
49
+ 46,
50
+ 47,
51
+ 48,
52
+ 49,
53
+ 50,
54
+ 51,
55
+ 52,
56
+ 53,
57
+ 54,
58
+ 55,
59
+ 56,
60
+ 57,
61
+ 58,
62
+ 59,
63
+ 60,
64
+ 61,
65
+ 62,
66
+ 63
67
+ ],
68
+ "total_classes": 64,
69
+ "json_remapping": {
70
+ "63": 0,
71
+ "64": 1,
72
+ "65": 2,
73
+ "66": 3,
74
+ "67": 14,
75
+ "68": 15,
76
+ "69": null
77
+ },
78
+ "note": "JSON jumps merged into existing MMFS classes. Only Comb (63) kept separate."
79
+ }