forked from ahmetgunduz/Real-time-GesRec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_online.sh
37 lines (37 loc) · 1.04 KB
/
run_online.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
python online_test.py \
--root_path ~/\
--video_path /data2/EgoGesture/images \
--annotation_path Real-time-GesRec/annotation_EgoGesture/egogestureall.json \
--resume_path_det MyRes3D-Ahmet/report/egogesture_resnetl_10_Depth_8_9939.pth \
--resume_path_clf MyRes3D-Ahmet/report/egogesture_resnext_101_Depth_32_9403.pth \
--result_path MyRes3D-Ahmet/results \
--dataset egogesture \
--sample_duration_det 8 \
--sample_duration_clf 32 \
--model_det resnetl \
--model_clf resnext \
--model_depth_det 10 \
--model_depth_clf 101 \
--resnet_shortcut_det A \
--resnet_shortcut_clf B \
--batch_size 1 \
--n_classes_det 2 \
--n_finetune_classes_det 2 \
--n_classes_clf 83 \
--n_finetune_classes_clf 83 \
--n_threads 16 \
--checkpoint 1 \
--modality_det Depth \
--modality_clf Depth \
--n_val_samples 1 \
--train_crop random \
--test_subset test \
--det_strategy median \
--det_queue_size 4 \
--det_counter 2 \
--clf_strategy median \
--clf_queue_size 16 \
--clf_threshold_pre 0.6 \
--clf_threshold_final 0.15 \
--stride_len 1 \