Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 90cec34

Browse files
Open-source Xception-65 pretrained on COCO.
Open-sourcing the checkpoint so that users could reproduce our PASCAL VOC 2012 validation set result when training on train_aug set.
1 parent 8349022 commit 90cec34

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

research/deeplab/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,18 @@ with "deeplab".
126126

127127
## Change Logs
128128

129+
### October 1, 2018
130+
131+
Released MobileNet-v2 depth-multiplier = 0.5 COCO-pretrained checkpoints on
132+
PASCAL VOC 2012, and Xception-65 COCO pretrained checkpoint (i.e., no PASCAL
133+
pretrained).
134+
135+
129136
### September 5, 2018
130137

131138
Released Cityscapes pretrained checkpoints with found best dense prediction cell.
132139

140+
133141
### May 26, 2018
134142

135143
Updated ADE20K pretrained checkpoint.

research/deeplab/g3doc/model_zoo.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,9 @@ Un-tar'ed directory includes:
100100

101101
### Model details
102102

103-
We also provide some checkpoints that are only pretrained on ImageNet so that
104-
one could use this for training your own models.
103+
We also provide some checkpoints that are pretrained on ImageNet and/or COCO (as
104+
post-fixed in the model name) so that one could use this for training your own
105+
models.
105106

106107
* mobilenet_v2: We refer the interested users to the TensorFlow open source
107108
[MobileNet-V2](https://github.com/tensorflow/models/tree/master/research/slim/nets/mobilenet)
@@ -120,11 +121,12 @@ one could use this for training your own models.
120121

121122
Model name | File Size
122123
-------------------------------------------------------------------------------------- | :-------:
123-
[xception_41](http://download.tensorflow.org/models/xception_41_2018_05_09.tar.gz ) | 288MB
124-
[xception_65](http://download.tensorflow.org/models/deeplabv3_xception_2018_01_04.tar.gz) | 447MB
125-
[xception_71](http://download.tensorflow.org/models/xception_71_2018_05_09.tar.gz ) | 474MB
126-
[resnet_v1_50_beta](http://download.tensorflow.org/models/resnet_v1_50_2018_05_04.tar.gz) | 274MB
127-
[resnet_v1_101_beta](http://download.tensorflow.org/models/resnet_v1_101_2018_05_04.tar.gz) | 477MB
124+
[xception_41_imagenet](http://download.tensorflow.org/models/xception_41_2018_05_09.tar.gz ) | 288MB
125+
[xception_65_imagenet](http://download.tensorflow.org/models/deeplabv3_xception_2018_01_04.tar.gz) | 447MB
126+
[xception_65_imagenet_coco](http://download.tensorflow.org/models/xception_65_coco_pretrained_2018_10_02.tar.gz) | 292MB
127+
[xception_71_imagenet](http://download.tensorflow.org/models/xception_71_2018_05_09.tar.gz ) | 474MB
128+
[resnet_v1_50_beta_imagenet](http://download.tensorflow.org/models/resnet_v1_50_2018_05_04.tar.gz) | 274MB
129+
[resnet_v1_101_beta_imagenet](http://download.tensorflow.org/models/resnet_v1_101_2018_05_04.tar.gz) | 477MB
128130

129131
## References
130132

research/deeplab/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def extract_features(images,
382382
else:
383383
# The following codes employ the DeepLabv3 ASPP module. Note that We
384384
# could express the ASPP module as one particular dense prediction
385-
# cell architecture. We do not do so but leave the followng codes in
385+
# cell architecture. We do not do so but leave the following codes in
386386
# order for backward compatibility.
387387
batch_norm_params = {
388388
'is_training': is_training and fine_tune_batch_norm,

0 commit comments

Comments
 (0)