Skip to content

Instantly share code, notes, and snippets.

@ck196
Created February 9, 2017 02:01
Show Gist options
  • Save ck196/405ff1612b61bb236ef379bad77a8878 to your computer and use it in GitHub Desktop.
Save ck196/405ff1612b61bb236ef379bad77a8878 to your computer and use it in GitHub Desktop.
#!/bin/bash
set -x
set -e
LOG="testing_log.txt"
exec &> >(tee -a "$LOG")
echo Logging output to "$LOG"
rm -rf data/VOCdevkit2007/annotations_cache/annots.pkl
time ./tools/test_net.py --gpu 0 --def models/pvanet/test.prototxt \
--net output/faster_rcnn_pvanet/voc_2007_trainval/pvanet_frcnn_384_iter_10000.caffemodel \
--cfg models/pvanet/cfgs/submit_160715.yml \
--imdb voc_2007_test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment