[
https://issues.apache.org/jira/browse/SINGA-383?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16591087#comment-16591087
]
ASF subversion and git services commented on SINGA-383:
-------------------------------------------------------
Commit d5422a432d1ad4261f3b44b1f61af5f4c2a651ec in incubator-singa's branch
refs/heads/master from xuewanqi
[ https://git-wip-us.apache.org/repos/asf?p=incubator-singa.git;h=d5422a4 ]
SINGA-383 Add Separable Convolution for autograd
- Implement Xception net by calling SeparableConv2d layer. The file is added to
/example/autograd folder.
- Modified SeparableConv2d layer API.
> Add Separable Convolution for autograd
> --------------------------------------
>
> Key: SINGA-383
> URL: https://issues.apache.org/jira/browse/SINGA-383
> Project: Singa
> Issue Type: New Feature
> Reporter: wangwei
> Priority: Major
>
> This type of convolution is used in [Xception
> model|https://arxiv.org/pdf/1610.02357.pdf] and is supported by [other
> libraries|[https://github.com/pytorch/pytorch/issues/1708].]
>
> To implement it in Singa, we create a new operation (separable_conv_2d) by
> calling a depthwise_conv_2d (normal convolution with number of output
> channels=1, and number of groups = number of input channels); and then
> calling normal convolution with number of groups=1, and kernel size=1, i.e.
> pointwise convolution.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)