Update README.md
Browse files
README.md
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
-
---
|
2 |
-
license:
|
3 |
-
pipeline_tag: image-segmentation
|
4 |
-
|
|
|
|
|
5 |
|
6 |
# Introduction
|
7 |
|
@@ -12,8 +14,26 @@ Please see www.github.com/kalray/kann-models-zoo for details and proper usage. <
|
|
12 |
|
13 |
- Tensorflow: deeplab_mobilenetv2_voc2012_513x513.pb
|
14 |
|
15 |
-
#
|
16 |
|
17 |
-
|
|
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
pipeline_tag: image-segmentation
|
4 |
+
base_model:
|
5 |
+
- google/deeplabv3_mobilenet_v2_1.0_513
|
6 |
+
---
|
7 |
|
8 |
# Introduction
|
9 |
|
|
|
14 |
|
15 |
- Tensorflow: deeplab_mobilenetv2_voc2012_513x513.pb
|
16 |
|
17 |
+
# Reference links
|
18 |
|
19 |
+
- github: https://github.com/tensorflow/models/blob/archive/research/deeplab/g3doc/model_zoo.md
|
20 |
+
- weights: http://download.tensorflow.org/models/deeplabv3_mnv2_pascal_trainval_2018_01_29.tar.gz
|
21 |
|
22 |
+
Lecture reference
|
23 |
+
```BibTex
|
24 |
+
@inproceedings{deeplabv3plus2018,
|
25 |
+
title={Encoder-Decoder with Atrous Separable Convolution for Semantic Image Segmentation},
|
26 |
+
author={Liang-Chieh Chen and Yukun Zhu and George Papandreou and Florian Schroff and Hartwig Adam},
|
27 |
+
booktitle={ECCV},
|
28 |
+
year={2018}
|
29 |
+
}
|
30 |
+
|
31 |
+
@inproceedings{mobilenetv22018,
|
32 |
+
title={MobileNetV2: Inverted Residuals and Linear Bottlenecks},
|
33 |
+
author={Mark Sandler and Andrew Howard and Menglong Zhu and Andrey Zhmoginov and Liang-Chieh Chen},
|
34 |
+
booktitle={CVPR},
|
35 |
+
year={2018}
|
36 |
+
}
|
37 |
+
```
|
38 |
+
|
39 |
+
Author: [email protected]
|