Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove and Matrix::convExpand and Matrix::convShrink and Refactor BlockExpandLayer #2424

Closed
hedaoyuan opened this issue Jun 8, 2017 · 1 comment

Comments

@hedaoyuan
Copy link
Contributor

  1. Remove the Matrix::convExpand and Matrix::convShrink code, it has been re-implemented in the Function.
  2. Reconstruction of this BlockExpandLayer with the implementation of Function.
@hedaoyuan hedaoyuan mentioned this issue Jun 8, 2017
3 tasks
@hedaoyuan hedaoyuan self-assigned this Jun 8, 2017
@hedaoyuan
Copy link
Contributor Author

  • Image Expand Function
    Need to implement an image expand Function, Converts an NCHW format image input data into an NST format sequence data. Where N is batch size, S is the length of the sequence after each image is expanded, T is the size of each time step in the sequence.

  • Modify Im2ColFunctor implementation
    The input and output of Matrix::convExpand and Im2ColFunctor are in the following format,

imData = [input_channels, input_height, input_width]
colData = [input_channels, filter_height, filter_width, output_height, output_width]

The output in the Image Expand Function requires [output_height, output_width, input_channels, filter_height, filter_width] format, this can be convenient for reshape into [S, T] format, where S is output_height * output_width, and T is input_channels * filter_height * filter_width. Otherwise, you will need to do a transpose operation on the result of Im2ColFunctor. transpose in BlockExpandLayer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Embedded and Mobile Deployment
Convolution Optimization
Development

No branches or pull requests

1 participant