Skip to content

Commit

Permalink
Model update. Better recall in CD-HARD dataset (from 75\% to 81\%).
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiomsilva committed Jan 15, 2019
1 parent d6eff71 commit 40b2437
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Use the script "run.sh" to run our ALPR approach. It requires 3 arguments:
* __CSV file:__ specify an output CSV file.

```shellscript
$ bash run.sh -i samples/test -o /tmp/output -c /tmp/output/results.csv
$ bash get-networks.sh && bash run.sh -i samples/test -o /tmp/output -c /tmp/output/results.csv
```

## Training the LP detector
Expand Down
4 changes: 2 additions & 2 deletions get-networks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ mkdir data/lp-detector -p
mkdir data/ocr -p
mkdir data/vehicle-detector -p

wget -c -N www.inf.ufrgs.br/~smsilva/alpr-unconstrained/data/lp-detector/wpod-net.h5 -P data/lp-detector/
wget -c -N www.inf.ufrgs.br/~smsilva/alpr-unconstrained/data/lp-detector/wpod-net.json -P data/lp-detector/
wget -c -N www.inf.ufrgs.br/~smsilva/alpr-unconstrained/data/lp-detector/wpod-net_update1.h5 -P data/lp-detector/
wget -c -N www.inf.ufrgs.br/~smsilva/alpr-unconstrained/data/lp-detector/wpod-net_update1.json -P data/lp-detector/

wget -c -N www.inf.ufrgs.br/~smsilva/alpr-unconstrained/data/ocr/ocr-net.cfg -P data/ocr/
wget -c -N www.inf.ufrgs.br/~smsilva/alpr-unconstrained/data/ocr/ocr-net.names -P data/ocr/
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ then
exit 1
fi

lp_model="data/lp-detector/wpod-net.h5"
lp_model="data/lp-detector/wpod-net_update1.h5"
input_dir=''
output_dir=''
csv_file=''
Expand Down

0 comments on commit 40b2437

Please sign in to comment.