Upload README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MMFS Figure Skating Dataset (Processed)
|
| 2 |
+
|
| 3 |
+
This repository contains processed skeleton data for figure skating action classification.
|
| 4 |
+
|
| 5 |
+
Files included:
|
| 6 |
+
- `skeleton/train_data.pkl` — list of numpy arrays; each sample shape (150, 17, 3, 1)
|
| 7 |
+
- `skeleton/test_data.pkl` — same as above for test
|
| 8 |
+
- `skeleton/train_label.pkl`, `skeleton/test_label.pkl` — integer class labels
|
| 9 |
+
- `skeleton/train_name.pkl`, `skeleton/test_name.pkl` — original action names (strings)
|
| 10 |
+
- `skeleton/train_score.pkl`, `skeleton/test_score.pkl` — action scores (floats)
|
| 11 |
+
- `train_metadata_v2.csv`, `test_metadata_v2.csv` — metadata with `data_index` and cleaned `action_clean`
|
| 12 |
+
- `metadata_clean.csv` — compact metadata for training with `data_path` (if present)
|
| 13 |
+
|
| 14 |
+
How to load a sample:
|
| 15 |
+
|
| 16 |
+
```python
|
| 17 |
+
import pickle
|
| 18 |
+
train_data = pickle.load(open('skeleton/train_data.pkl','rb'))
|
| 19 |
+
train_labels = pickle.load(open('skeleton/train_label.pkl','rb'))
|
| 20 |
+
|
| 21 |
+
i = 0
|
| 22 |
+
x = train_data[i] # numpy array, shape (150,17,3,1)
|
| 23 |
+
y = train_labels[i]
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
Contact: meghna (meghna2801)
|