Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: agpl-3.0
|
| 3 |
+
tags:
|
| 4 |
+
- thermal
|
| 5 |
+
- skeleton-action-recognition
|
| 6 |
+
- pose-estimation
|
| 7 |
+
- yolo
|
| 8 |
+
- ota
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# OpenThermalAction Models
|
| 12 |
+
|
| 13 |
+
This repository contains all trained models for the OpenThermalAction (OTA) dataset:
|
| 14 |
+
|
| 15 |
+
- **Skeleton-based action recognition models** (5 different architectures)
|
| 16 |
+
- **YOLO11x pose estimation model** for keypoint extraction
|
| 17 |
+
|
| 18 |
+
## Structure
|
| 19 |
+
|
| 20 |
+
```
|
| 21 |
+
ota-models/
|
| 22 |
+
βββ trained_from_scratch/
|
| 23 |
+
β βββ aagcn_best_top1_acc_epoch_X.pth
|
| 24 |
+
β βββ ctrgcn_best_top1_acc_epoch_X.pth
|
| 25 |
+
β βββ msg3d_best_top1_acc_epoch_X.pth
|
| 26 |
+
β βββ stgcn_best_top1_acc_epoch_X.pth
|
| 27 |
+
β βββ stgcn++_best_top1_acc_epoch_X.pth
|
| 28 |
+
βββ fine_tuned/
|
| 29 |
+
β βββ aagcn_best_top1_acc_epoch_X.pth
|
| 30 |
+
β βββ ctrgcn_best_top1_acc_epoch_X.pth
|
| 31 |
+
β βββ msg3d_best_top1_acc_epoch_X.pth
|
| 32 |
+
β βββ stgcn_best_top1_acc_epoch_X.pth
|
| 33 |
+
β βββ stgcn++_best_top1_acc_epoch_X.pth
|
| 34 |
+
βββ yolo11x-pose.pt
|
| 35 |
+
```
|