Skip to content

Latest commit

 

History

History
10 lines (5 loc) · 681 Bytes

File metadata and controls

10 lines (5 loc) · 681 Bytes

Diagonalwise Refactorization: An Efficient Training Method for Depthwise Convolutions

This is the TensorFlow implementation of Diagonalwise Refactorization.

Diagonalwise Refactorization is an efficient implementation for depthwise convolutions. The key idea of Diagonalwise Refactorization is to rearrange the weight vectors of a depthwise convolution into a large diagonal weight matrixi, so as to convert the depthwise convolution into one single standard convolution, which is well supported by the cuDNN library that is highly-optimized for GPU computations.

In TensorFlow, Diagonalwise Refactorization is implemented in Python and can be further accelerated using C++.