-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#9 Revisiting Dilated Convolution: A Simple Approach for Weakly- and …
…SemiSupervised Semantic Segmentation
- Loading branch information
1 parent
4217712
commit fce4696
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# [Revisiting Dilated Convolution: A Simple Approach for Weakly- and SemiSupervised Semantic Segmentation](http://openaccess.thecvf.com/content_cvpr_2018/papers/Wei_Revisiting_Dilated_Convolution_CVPR_2018_paper.pdf) | ||
|
||
# Category | ||
Semantic Segmentation | ||
Weakly-supervised Segmentation | ||
|
||
# Context | ||
|
||
#### Weakly-supervised Segmentation | ||
少ないアノテーションでSegmentationができるようにという動機。 | ||
mage-levelアノテーションから学習 | ||
Coarse-level アノテーションから学習 | ||
という2レベルあるっぽい。 | ||
|
||
|
||
#### この研究の背景 | ||
Segmentationの分野においては、まだ、supervised > weakly supervised | ||
これは、image-levelからでは質の良い密な物体のlocalization mapを作り出せないというのに原因がある | ||
これを解消するために、Dilated Convolutionをうまく使う。 | ||
|
||
|
||
# Correctness | ||
SOTA出してるらしいしすごそう | ||
|
||
# Contribution | ||
|
||
異なるDilated rateを用いることで | ||
①Convolutionのカーネルサイズを効率的に大きくできる | ||
②区別できている輪郭情報を区別できていない物体の領域へと転移活用でき、区別手出来ていない物体領域をlocalization mapに反映させることができる。 | ||
|
||
異なるdilated rateを用いたCNNブロックでSOTA以上を達成 | ||
|
||
# Clarity | ||
まあまあ | ||
|
||
# Comment | ||
Dilated Convたびたび現れるので論文読んで実装理解して使いこなせるようにしたい。 | ||
weakly-supervised segも一つくらい有名なの実装するか、動かすかしてどんなのか見てみたい。 |