carlosj934 commited on
Commit
1efdfe3
·
1 Parent(s): f5b56fe

Add 1 new BJJ samples - Version 1.1.0

Browse files
Files changed (4) hide show
  1. README.md +163 -0
  2. data-00000-of-00001.arrow +3 -0
  3. dataset_info.json +68 -0
  4. state.json +13 -0
README.md ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-classification
5
+ - keypoint-detection
6
+ - object-detection
7
+ tags:
8
+ - martial-arts
9
+ - bjj
10
+ - brazilian-jiu-jitsu
11
+ - pose-detection
12
+ - sports-analysis
13
+ - keypoint-detection
14
+ - submissions
15
+ - grappling
16
+ - computer-vision
17
+ language:
18
+ - en
19
+ size_categories:
20
+ - 1K<n<10K
21
+ version: 1.1.0
22
+ ---
23
+
24
+ # BJJ Positions & Submissions Dataset
25
+
26
+ ## Dataset Description
27
+
28
+ This dataset contains pose keypoint annotations for Brazilian Jiu-Jitsu (BJJ) combat positions and submissions. It includes 2D keypoint coordinates for up to 2 athletes per image, labeled with specific BJJ positions and submission attempts.
29
+
30
+ ### Dataset Summary
31
+
32
+ - **Total samples**: 1
33
+ - **Position classes**: 1 unique BJJ positions
34
+ - **Keypoint format**: MS-COCO (17 keypoints per person)
35
+ - **Data format**: [x, y, confidence] for each keypoint
36
+ - **Last updated**: 2025-07-21
37
+ - **Version**: 1.1.0
38
+
39
+ ### Supported Tasks
40
+
41
+ - BJJ position classification
42
+ - Submission detection
43
+ - Multi-person pose estimation
44
+ - Combat sports analysis
45
+ - Action recognition in grappling
46
+
47
+ ## Recent Updates
48
+
49
+ ### Version 1.1.0 (2025-07-21)
50
+ - Added new samples across various positions
51
+ - Improved position coverage and diversity
52
+ - Enhanced submission technique annotations
53
+
54
+ ### Position Distribution
55
+
56
+ - `closed_guard1`: 1 samples
57
+
58
+
59
+ ## Dataset Structure
60
+
61
+ ### Data Fields
62
+
63
+ - `id`: Unique sample identifier
64
+ - `image_name`: Name of the source image
65
+ - `position`: BJJ position/submission label
66
+ - `frame_number`: Frame number from source video
67
+ - `pose1_keypoints`: 17 keypoints for athlete 1 [[x, y, confidence], ...]
68
+ - `pose1_num_keypoints`: Number of visible keypoints for athlete 1
69
+ - `pose2_keypoints`: 17 keypoints for athlete 2 [[x, y, confidence], ...]
70
+ - `pose2_num_keypoints`: Number of visible keypoints for athlete 2
71
+ - `num_people`: Number of people detected (1 or 2)
72
+ - `total_keypoints`: Total visible keypoints across both athletes
73
+ - `date_added`: Date when sample was added to dataset
74
+
75
+ ### Position Classes
76
+
77
+ The dataset includes the following BJJ positions and submissions:
78
+
79
+ **Guard Positions:**
80
+ - `open_guard1/2`: Open guard with athlete designation
81
+ - `closed_guard1/2`: Closed guard with athlete designation
82
+ - `half_guard1/2`: Half guard with athlete designation
83
+ - `50_50_guard`: Equal leg entanglement position
84
+
85
+ **Top Control Positions:**
86
+ - `mount1/2`: Mount position with athlete designation
87
+ - `side_control1/2`: Side control with athlete designation
88
+ - `back1/2`: Back control with athlete designation
89
+ - `turtle1/2`: Turtle position with athlete designation
90
+
91
+ **Neutral/Transition:**
92
+ - `standing`: Standing position
93
+ - `takedown1/2`: Takedown attempt with initiator designation
94
+
95
+ ## Usage
96
+
97
+ ```python
98
+ from datasets import load_dataset
99
+
100
+ # Load the dataset
101
+ dataset = load_dataset("carlosj934/BJJ_Positions_Submissions")
102
+
103
+ # Access samples
104
+ sample = dataset['train'][0]
105
+ print(f"Position: {sample['position']}")
106
+ print(f"Number of people: {sample['num_people']}")
107
+ print(f"Athlete 1 keypoints: {sample['pose1_keypoints']}")
108
+
109
+ # Filter by specific positions
110
+ guard_samples = dataset['train'].filter(lambda x: 'guard' in x['position'])
111
+ print(f"Guard positions: {len(guard_samples)} samples")
112
+ ```
113
+
114
+ ## Data Collection Progress
115
+
116
+ The dataset is continuously updated with new BJJ position and submission samples. Each position is being captured from multiple angles and with different athletes to improve model generalization.
117
+
118
+ ### Collection Goals
119
+
120
+ - **Target**: 50+ samples per position (900+ total)
121
+ - **Current**: 1 total samples
122
+ - **Coverage**: 1/18+ positions represented
123
+ - **Focus**: High-quality pose annotations for training robust BJJ classifiers
124
+
125
+ ### Data Quality
126
+
127
+ - All poses manually verified and labeled
128
+ - Multiple camera angles per position
129
+ - Diverse athlete body types and sizes
130
+ - Clear, unobstructed pose visibility
131
+
132
+ ## Applications
133
+
134
+ This dataset can be used for:
135
+
136
+ - **Position Classification**: Automatically identify BJJ positions in videos
137
+ - **Technique Analysis**: Analyze athlete positioning and technique execution
138
+ - **Training Feedback**: Provide real-time feedback on position quality
139
+ - **Competition Analysis**: Automatically score and analyze BJJ matches
140
+ - **Educational Tools**: Interactive learning applications for BJJ students
141
+
142
+ ## Citation
143
+
144
+ If you use this dataset in your research, please cite:
145
+
146
+ ```bibtex
147
+ @dataset{bjj_positions_submissions_2025,
148
+ title={BJJ Positions and Submissions Dataset},
149
+ author={Carlos J},
150
+ year={2025},
151
+ version={1.1.0},
152
+ publisher={Hugging Face},
153
+ url={https://huggingface.co/datasets/carlosj934/BJJ_Positions_Submissions}
154
+ }
155
+ ```
156
+
157
+ ## License
158
+
159
+ MIT License - See LICENSE file for details.
160
+
161
+ ## Contact
162
+
163
+ For questions or contributions, please reach out through the Hugging Face dataset page or open an issue in the associated repository.
data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2666e3cd35002869b11070a9d67dac56c29673a1d1fc99ee89ca23da33dd1ce2
3
+ size 3176
dataset_info.json ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "id": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "image_name": {
10
+ "dtype": "string",
11
+ "_type": "Value"
12
+ },
13
+ "position": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "frame_number": {
18
+ "dtype": "int32",
19
+ "_type": "Value"
20
+ },
21
+ "pose1_keypoints": {
22
+ "feature": {
23
+ "feature": {
24
+ "dtype": "float32",
25
+ "_type": "Value"
26
+ },
27
+ "length": 3,
28
+ "_type": "List"
29
+ },
30
+ "length": 17,
31
+ "_type": "List"
32
+ },
33
+ "pose1_num_keypoints": {
34
+ "dtype": "int32",
35
+ "_type": "Value"
36
+ },
37
+ "pose2_keypoints": {
38
+ "feature": {
39
+ "feature": {
40
+ "dtype": "float32",
41
+ "_type": "Value"
42
+ },
43
+ "length": 3,
44
+ "_type": "List"
45
+ },
46
+ "length": 17,
47
+ "_type": "List"
48
+ },
49
+ "pose2_num_keypoints": {
50
+ "dtype": "int32",
51
+ "_type": "Value"
52
+ },
53
+ "num_people": {
54
+ "dtype": "int32",
55
+ "_type": "Value"
56
+ },
57
+ "total_keypoints": {
58
+ "dtype": "int32",
59
+ "_type": "Value"
60
+ },
61
+ "date_added": {
62
+ "dtype": "string",
63
+ "_type": "Value"
64
+ }
65
+ },
66
+ "homepage": "",
67
+ "license": ""
68
+ }
state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "f00451cd30b9b0f1",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": null
13
+ }