Tarakeshwaran commited on
Commit
4eff0a8
·
verified ·
1 Parent(s): 0a19d45

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -25,23 +25,20 @@ dataset_info:
25
  list: int64
26
  splits:
27
  - name: train
28
- num_bytes: 671820
29
  num_examples: 180
30
  - name: test
31
- num_bytes: 179152
32
  num_examples: 48
33
- download_size: 150622
34
- dataset_size: 850972
35
  ---
36
 
37
 
38
  # Gesture Recognition Dataset
39
 
40
  ## Dataset Structure
41
- - **Labels**: ['Me', 'Thirsty', 'Null', 'Hungry', 'Good', 'Bad']
42
  - **Format**: Each record contains a 'label' and a 'batch' field
43
  - **Batch Size**: 30 rows per batch (30 time steps)
44
  - **Features**: 15 columns per row
 
45
 
46
  ## Column Information
47
  Each row in a batch contains 15 values in this order:
@@ -64,7 +61,7 @@ Each row in a batch contains 15 values in this order:
64
  ## Data Format
65
  ```python
66
  {
67
- 'label': 'gesture_name', # One of: ['Me', 'Thirsty', 'Null', 'Hungry', 'Good', 'Bad']
68
  'batch': [
69
  [Timestamp,F1, F2, F3, F4, F5, Acc_Fin_x, Acc_Fin_y, Acc_Fin_z, Acc_Palm_x, Acc_Palm_y, Acc_Palm_z, Acc_Arm_x, Acc_Arm_y, Acc_Arm_z], # Row 1
70
  [Timestamp,F1, F2, F3, F4, F5, Acc_Fin_x, Acc_Fin_y, Acc_Fin_z, Acc_Palm_x, Acc_Palm_y, Acc_Palm_z, Acc_Arm_x, Acc_Arm_y, Acc_Arm_z], # Row 2
@@ -79,3 +76,6 @@ Each row in a batch contains 15 values in this order:
79
  - **Acc_Palm**: Accelerometer on palm (x, y, z axes)
80
  - **Acc_Arm**: Accelerometer on arm (x, y, z axes)
81
 
 
 
 
 
25
  list: int64
26
  splits:
27
  - name: train
 
28
  num_examples: 180
29
  - name: test
 
30
  num_examples: 48
 
 
31
  ---
32
 
33
 
34
  # Gesture Recognition Dataset
35
 
36
  ## Dataset Structure
37
+ - **Labels**: ['Good', 'Null', 'Thirsty', 'Bad', 'Me', 'Hungry']
38
  - **Format**: Each record contains a 'label' and a 'batch' field
39
  - **Batch Size**: 30 rows per batch (30 time steps)
40
  - **Features**: 15 columns per row
41
+ - **Selection Method**: cosine_similarity - Files selected based on similarity to majority pattern
42
 
43
  ## Column Information
44
  Each row in a batch contains 15 values in this order:
 
61
  ## Data Format
62
  ```python
63
  {
64
+ 'label': 'gesture_name', # One of: ['Good', 'Null', 'Thirsty', 'Bad', 'Me', 'Hungry']
65
  'batch': [
66
  [Timestamp,F1, F2, F3, F4, F5, Acc_Fin_x, Acc_Fin_y, Acc_Fin_z, Acc_Palm_x, Acc_Palm_y, Acc_Palm_z, Acc_Arm_x, Acc_Arm_y, Acc_Arm_z], # Row 1
67
  [Timestamp,F1, F2, F3, F4, F5, Acc_Fin_x, Acc_Fin_y, Acc_Fin_z, Acc_Palm_x, Acc_Palm_y, Acc_Palm_z, Acc_Arm_x, Acc_Arm_y, Acc_Arm_z], # Row 2
 
76
  - **Acc_Palm**: Accelerometer on palm (x, y, z axes)
77
  - **Acc_Arm**: Accelerometer on arm (x, y, z axes)
78
 
79
+ ## Data Quality
80
+ Files were selected using cosine_similarity to ensure the most representative samples for each gesture class.
81
+