Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
7968aabe
Commit
7968aabe
authored
Oct 05, 2018
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update notes about coco dataset (fix #922)
parent
f5cf2e14
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
14 deletions
+19
-14
docs/tutorial/summary.md
docs/tutorial/summary.md
+2
-2
examples/FasterRCNN/README.md
examples/FasterRCNN/README.md
+17
-12
No files found.
docs/tutorial/summary.md
View file @
7968aabe
...
...
@@ -12,8 +12,8 @@ This is how TensorFlow summaries eventually get logged/saved/printed:
When you call
`tf.summary.xxx`
in your graph code, TensorFlow adds an op to
`tf.GraphKeys.SUMMARIES`
collection (by default).
2.
__When to Log__:
[
MergeAllSummaries
](
../modules/callbacks.html#tensorpack.callbacks.MergeAllSummaries
)
callback is
in
the
[
default callbacks
](
../modules/train.html#tensorpack.train.DEFAULT_CALLBACKS
)
.
It runs ops in the
`SUMMARIES`
collection (by default) every epoch (by default),
callback is
one of
the
[
default callbacks
](
../modules/train.html#tensorpack.train.DEFAULT_CALLBACKS
)
.
It runs ops in the
`
tf.GraphKeys.
SUMMARIES`
collection (by default) every epoch (by default),
and writes results to the monitors.
3.
__Where to Log__:
Several monitors are
[
enabled by default
](
../modules/train.html#tensorpack.train.DEFAULT_MONITORS
)
.
...
...
examples/FasterRCNN/README.md
View file @
7968aabe
...
...
@@ -17,21 +17,26 @@ with the support of:
+
pycocotools:
`pip install 'git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI'`
+
Pre-trained
[
ImageNet ResNet model
](
http://models.tensorpack.com/FasterRCNN/
)
from tensorpack model zoo.
+
COCO data
. It needs to have the following directory structure:
+
[
COCO data
](
http://cocodataset.org/#download
)
. It needs to have the following directory structure:
```
COCO/DIR/
annotations/
instances_train2014.json
instances_val2014.json
instances_minival2014.json
instances_valminusminival2014.json
train2014/
COCO_train2014_*.jpg
val2014/
COCO_val2014_*.jpg
instances_train201?.json
instances_val201?.json
train201?/
COCO_train201?_*.jpg
val201?/
COCO_val201?_*.jpg
```
`minival`
and
`valminusminival`
are optional. You can download them
[
here
](
https://github.com/rbgirshick/py-faster-rcnn/blob/master/data/README.md
)
.
You can use either the 2014 version or the 2017 version of the dataset.
To use the common "trainval35k + minival" split for the 2014 dataset, just
download the annotation files
`instances_minival2014.json`
,
`instances_valminusminival2014.json`
from
[
here
](
https://github.com/rbgirshick/py-faster-rcnn/blob/master/data/README.md
)
to
`annotations/`
as well.
<sub><sup>
Note that train2017==trainval35k==train2014+val2014-minival2014, and val2017==minival2014
</sup></sub>
## Usage
...
...
@@ -71,7 +76,7 @@ prediction will need to be run with the corresponding training configs.
## Results
These models are trained on trainval35k and evaluated on minival using mAP@IoU=0.50:0.95.
These models are trained on trainval35k and evaluated on minival
2014
using mAP@IoU=0.50:0.95.
Performance in
[
Detectron
](
https://github.com/facebookresearch/Detectron/
)
can be roughly reproduced.
Mask R-CNN results contain both box and mask mAP.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment