Skip to content

Commit 560fae8

Browse files
committed
add missing files.
1 parent 2f52329 commit 560fae8

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

research/object_detection/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ release includes:
140140
* Region-Based Fully Convolutional Networks (R-FCN) with Resnet 101,
141141
* Faster RCNN with Resnet 101,
142142
* Faster RCNN with Inception Resnet v2
143-
* Mask R-CNN with Resnet 101.
144143
* Frozen weights (trained on the COCO dataset) for each of the above models to
145144
be used for out-of-the-box inference purposes.
146145
* A [Jupyter notebook](object_detection_tutorial.ipynb) for performing

research/object_detection/g3doc/detection_model_zoo.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Tensorflow detection model zoo
22

33
We provide a collection of detection models pre-trained on the [COCO
4-
dataset](http://mscoco.org) and the [Kitti dataset](http://www.cvlibs.net/datasets/kitti/).
5-
These models can be useful for
4+
dataset](http://mscoco.org), the [Kitti dataset](http://www.cvlibs.net/datasets/kitti/), and the
5+
[Open Images dataset](https://github.com/openimages/dataset). These models can
6+
be useful for
67
out-of-the-box inference if you are interested in categories already in COCO
7-
(e.g., humans, cars, etc). They are also useful for initializing your models when
8+
(e.g., humans, cars, etc) or in Open Images (e.g.,
9+
surfboard, jacuzzi, etc). They are also useful for initializing your models when
810
training on novel datasets.
911

1012
In the table below, we list each such pre-trained model including:
@@ -18,7 +20,7 @@ In the table below, we list each such pre-trained model including:
1820
configuration (these timings were performed using an Nvidia
1921
GeForce GTX TITAN X card) and should be treated more as relative timings in
2022
many cases.
21-
* detector performance on subset of the COCO validation set.
23+
* detector performance on subset of the COCO validation set or Open Images test split as measured by the dataset-specific mAP measure.
2224
Here, higher is better, and we only report bounding box mAP rounded to the
2325
nearest integer.
2426
* Output types (currently only `Boxes`)
@@ -86,5 +88,14 @@ Model name
8688
----------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---: | :-------------: | :-----:
8789
[faster_rcnn_resnet101_kitti](http://download.tensorflow.org/models/object_detection/faster_rcnn_resnet101_kitti_2017_11_08.tar.gz) | 79 | 87 | Boxes
8890

91+
## Open Images-trained models {#open-images-models}
92+
93+
Model name | Speed (ms) | Open Images [email protected][^2] | Outputs
94+
----------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---: | :-------------: | :-----:
95+
[faster_rcnn_inception_resnet_v2_atrous_oid](http://download.tensorflow.org/models/object_detection/faster_rcnn_inception_resnet_v2_atrous_oid_2017_11_08.tar.gz) | 727 | 37 | Boxes
96+
[faster_rcnn_inception_resnet_v2_atrous_lowproposals_oid](http://download.tensorflow.org/models/object_detection/faster_rcnn_inception_resnet_v2_atrous_lowproposals_oid_2017_11_08.tar.gz) | 347 | | Boxes
97+
98+
8999
[^1]: See [MSCOCO evaluation protocol](http://cocodataset.org/#detections-eval).
100+
[^2]: This is PASCAL mAP with a slightly different way of true positives computation: see [Open Images evaluation protocol](evaluation_protocols.md#open-images).
90101

research/object_detection/g3doc/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Tensorflow Object Detection API depends on the following libraries:
1414

1515
For detailed steps to install Tensorflow, follow the
1616
[Tensorflow installation instructions](https://www.tensorflow.org/install/).
17-
A typical user can install Tensorflow using one of the following commands:
17+
A typically user can install Tensorflow using one of the following commands:
1818

1919
``` bash
2020
# For CPU

0 commit comments

Comments
 (0)