-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
41 additions
and
29 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
#!/bin/bash | ||
# You can change the python interpreter used by setting the evironment variable PYTHON=... | ||
# Call this script as follows to use python 2.7: PYTHON=python bash eval_all.sh | ||
P=${PYTHON:=python3} | ||
cd $( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | ||
# This script reproduces table 3 in the paper | ||
python3 train_lpo.py -f0 0.2 ../models/lpo_VOC_0.2.dat | ||
python3 train_lpo.py -f0 0.1 ../models/lpo_VOC_0.1.dat | ||
python3 train_lpo.py -f0 0.05 ../models/lpo_VOC_0.05.dat | ||
python3 train_lpo.py -f0 0.03 ../models/lpo_VOC_0.03.dat | ||
python3 train_lpo.py -f0 0.02 ../models/lpo_VOC_0.02.dat | ||
python3 train_lpo.py -f0 0.01 ../models/lpo_VOC_0.01.dat -iou 0.925 # Increase the IoU a bit to make sure the number of proposals match | ||
$P train_lpo.py -f0 0.2 ../models/lpo_VOC_0.2.dat | ||
$P train_lpo.py -f0 0.1 ../models/lpo_VOC_0.1.dat | ||
$P train_lpo.py -f0 0.05 ../models/lpo_VOC_0.05.dat | ||
$P train_lpo.py -f0 0.03 ../models/lpo_VOC_0.03.dat | ||
$P train_lpo.py -f0 0.02 ../models/lpo_VOC_0.02.dat | ||
$P train_lpo.py -f0 0.01 ../models/lpo_VOC_0.01.dat -iou 0.925 # Increase the IoU a bit to make sure the number of proposals match |
This file contains 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
This file contains 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
This file contains 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