-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
54 lines (54 loc) · 3.33 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"id": "8154347c-a642-4e9e-91f1-ba800c0b532f",
"meta": {
"name": "duc-semantic",
"application_area": "Computer Vision",
"task": "Segmentation",
"task_extended": "Semantic Segmentation",
"data_type": "Image/Photo",
"data_source": "https://www.cityscapes-dataset.com/"
},
"publication": {
"title": "Understanding Convolution for Semantic Segmentation",
"source": "arxiv",
"year": 2018,
"authors": "Panqu Wang, Pengfei Chen, Ye Yuan, Ding Liu, Zehua Huang, Xiaodi Hou, Garrison Cottrell",
"email": "[email protected],",
"abstract": "Recent advances in deep learning, especially deep convolutional neural networks (CNNs), have led to significant improvement over previous semantic segmentation systems. Here we show how to improve pixel-wise semantic segmentation by manipulating convolution-related operations that are of both theoretical and practical value. First, we design dense upsampling convolution (DUC) to generate pixel-level prediction, which is able to capture and decode more detailed information that is generally missing in bilinear upsampling. Second, we propose a hybrid dilated convolution (HDC) framework in the encoding phase. This framework 1) effectively enlarges the receptive fields (RF) of the network to aggregate global information; 2) alleviates what we call the “gridding issue” caused by the standard dilated convolution operation. We evaluate our approaches thoroughly on the Cityscapes dataset, and achieve a state-of-art result of 80.1% mIOU in the test set at the time of submission. We also have achieved state-of-theart overall on the KITTI road estimation benchmark and the PASCAL VOC2012 segmentation task. Our source code can be found at https://github.com/TuSimple/TuSimple-DUC.",
"url": "https://arxiv.org/abs/1702.08502",
"google_scholar": "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=14464615562378306377",
"bibtex": "@article{Wang2018UnderstandingCF, title={Understanding Convolution for Semantic Segmentation}, author={Panqu Wang and Pengfei Chen and Ye Yuan and Ding Liu and Zehua Huang and Xiaodi Hou and Garrison W. Cottrell}, journal={2018 IEEE Winter Conference on Applications of Computer Vision (WACV)}, year={2018}, pages={1451-1460}}"
},
"model": {
"description": "DUC is a semantic segmentation model. It is benchmarked using the mIOU (mean Intersection Over Union) score and can be used in any application requiring semantic segmentation. It is trained on the cityscapes dataset which contains images from urban street scenes. Hence, it can be used in self driving vehicle applications.",
"provenance": "https://github.com/onnx/models/tree/master/models/semantic_segmentation/DUC",
"architecture": "Convolutional Neural Network (CNN)",
"learning_type": "Supervised learning",
"format": ".onnx",
"io": {
"input": {
"format": ["image/png", "image/jpg", "image/jpeg"],
"dim_limits": [
{
"min": 1,
"max": 4
},
{
"min": 32
},
{
"min": 32
}
]
},
"output": [
{
"name": "segmentation map",
"type": "mask_image",
"description": "Segmentation map showing color maps for the categories in the cityscapes dataset."
}
]
}
},
"modelhub": {}
}