3EF5-545 commited on
Commit
8d7a686
Β·
verified Β·
1 Parent(s): 364536b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
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
+ ```