forked from danielgordon10/vince
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain_tracking.sh
36 lines (32 loc) · 924 Bytes
/
train_tracking.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
#!/usr/bin/env bash
ulimit -n 99999
TITLE="end_task_tracking"
BASE_LOG_LOCATION="logs"
LOG_LOCATION=${BASE_LOG_LOCATION}"/"${TITLE}
mkdir -p ${LOG_LOCATION}
cp "$(readlink -f $0)" ${LOG_LOCATION}
python solver_runner.py \
--solver EndTaskTrackingSolver \
--lr-decay-type step \
--lr-step-schedule 10 20 30 \
--epochs 40 \
--dataset GOT10kDataset \
--pytorch-gpu-ids 0 \
--feature-extractor-gpu-ids 0,1 \
--base-logdir ${BASE_LOG_LOCATION} \
--backbone ResNet18SiamFCDilated \
--batch-size 256 \
--title ${TITLE} \
--iterations-per-epoch 5000 \
--image-log-frequency 5000 \
--save-frequency 5000 \
--long-save-frequency 25 \
--num-workers 40 \
--log-frequency 1 \
--input-width 224 \
--input-height 224 \
--data-path /home/xkcd/datasets/got-10k-small/ \
--base-lr 0.01 \
--description r18-b-256-q-65536-fsize-64-vid-ibc-4-kinetics \
--freeze-feature-extractor \
--use-apex