forked from rbgirshick/py-faster-rcnn
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
53a470e
commit 027eeb8
Showing
3 changed files
with
21 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Prototxt files that define models and solvers. | ||
|
||
Three models are defined, with some variations of each to support experiments | ||
in the paper. | ||
- Caffenet (model **S**) | ||
- VGG_CNN_M_1024 (model **M**) | ||
- VGG16 (model **L**) |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Artifacts generated by the scripts in `tools` are written in this directory. | ||
|
||
Trained Fast R-CNN networks are saved under: | ||
|
||
``` | ||
output/<experiment directory>/<dataset name>/ | ||
``` | ||
|
||
Test outputs are saved under: | ||
|
||
``` | ||
output/<experiment directory>/<dataset name>/<network snapshot name>/ | ||
``` |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Tools for training, testing, and compressing Fast R-CNN networks. |