File size: 977 Bytes
5e0b9df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
38
39
40
#!/usr/bin/env bash

set -x

EXP_DIR=logs_run_001
PY_ARGS=${@:1}

python -u main.py \
    --project_name CPC_HOTR_HICODET \
    --run_name ${EXP_DIR} \
    --HOIDet \
    --validate \
    --share_enc \
    --pretrained_dec \
    --use_consis \
    --share_dec_param \
    --epochs 90 \
    --lr_drop 60 \
    --lr 1e-4 \
    --lr_backbone 1e-5 \
    --ramp_up_epoch 30 \
    --path_id 0 \
    --num_hoi_queries 16 \
    --set_cost_idx 20 \
    --hoi_idx_loss_coef 1 \
    --hoi_act_loss_coef 10 \
    --backbone resnet50 \
    --hoi_consistency_loss_coef 0.2 \
    --hoi_idx_consistency_loss_coef 1 \
    --hoi_act_consistency_loss_coef 2 \
    --hoi_eos_coef 0.1 \
    --temperature 0.2 \
    --no_aux_loss \
    --hoi_aux_loss \
    --dataset_file hico-det \
    --data_path hico_20160224_det \
    --frozen_weights https://dl.fbaipublicfiles.com/detr/detr-r50-e632da11.pth \
    --output_dir checkpoints/hico_det/ \
    --augpath_name [\'p2\',\'p3\',\'p4\'] \
    ${PY_ARGS}