| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifndef LAYER_DECONVOLUTION1D_H |
| | #define LAYER_DECONVOLUTION1D_H |
| |
|
| | #include "layer.h" |
| |
|
| | namespace ncnn { |
| |
|
| | class Deconvolution1D : public Layer |
| | { |
| | public: |
| | Deconvolution1D(); |
| |
|
| | virtual int load_param(const ParamDict& pd); |
| |
|
| | virtual int load_model(const ModelBin& mb); |
| |
|
| | virtual int forward(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const; |
| |
|
| | protected: |
| | void cut_padding(const Mat& top_blob_bordered, Mat& top_blob, const Option& opt) const; |
| |
|
| | public: |
| | |
| | int num_output; |
| | int kernel_w; |
| | int dilation_w; |
| | int stride_w; |
| | int pad_left; |
| | int pad_right; |
| | int output_pad_right; |
| | int output_w; |
| | int bias_term; |
| |
|
| | int weight_data_size; |
| |
|
| | int activation_type; |
| | Mat activation_params; |
| |
|
| | |
| | Mat weight_data; |
| | Mat bias_data; |
| | }; |
| |
|
| | } |
| |
|
| | #endif |
| |
|