Created
February 9, 2017 02:01
-
-
Save ck196/405ff1612b61bb236ef379bad77a8878 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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