SelectiveFullyConnectedLayer.h 3.2 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Z
zhangjinchao01 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#pragma once

#include "Layer.h"
X
Xin Pan 已提交
18
#include "paddle/legacy/math/Matrix.h"
X
Xin Pan 已提交
19
#include "paddle/legacy/utils/ThreadLocal.h"
Z
zhangjinchao01 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

namespace paddle {

/**
 * @brief The SelectiveFullyConnectedLayer class
 *
 * SelectiveFullyConnectedLayer differs from FullyConnectedLayer by that it
 * requires an additional input to indicate several selected columns, and only
 * compute the multiplications between the input matrices and the selected
 * columns of the parameter matrices of this layer. If the selected columns is
 * not specified, SelectiveFullyConnected layer acts exactly like
 * FullyConnectedLayer.
 *
 * The config file api is selective_fc_layer.
 */
class SelectiveFullyConnectedLayer : public Layer {
W
Wu Yi 已提交
36
 protected:
Z
zhangjinchao01 已提交
37 38 39
  WeightList weights_;
  std::unique_ptr<Weight> biases_;

W
Wu Yi 已提交
40
 private:
Z
zhangjinchao01 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
  /**
   * Get selected columns each forward.
   */
  void getSelectiveCols();

  MatrixPtr mmat_;
  /// cpuSelCols_ is a CpuSparseMatrix, used to save selected columns.
  MatrixPtr cpuSelCols_;
  /// CpuSparseMatrix or GpuSparseMatrix. In CPU mode, selCols_ points
  /// to cpuSelCols_.
  MatrixPtr selCols_;
  size_t inputNum_;

  /// interOutput_ shared same memory with output_.value.
  MatrixPtr interOutput_;

  /// if fullOutput_ is false, interOutGrad_ sparse matrix
  MatrixPtr interOutGrad_;

  /// if true, means output_.value is the same as Fc Layer
  bool fullOutput_;

W
Wu Yi 已提交
63
 public:
Z
zhangjinchao01 已提交
64 65 66 67
  explicit SelectiveFullyConnectedLayer(const LayerConfig& config)
      : Layer(config), selCols_(nullptr) {}

  ~SelectiveFullyConnectedLayer() {}
Y
Yu Yang 已提交
68
  void prefetch() override;
Z
zhangjinchao01 已提交
69

Y
Yu Yang 已提交
70 71
  bool init(const LayerMap& layerMap,
            const ParameterMap& parameterMap) override;
Z
zhangjinchao01 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93

  Weight& getWeight(int idx) { return *weights_[idx]; }

  /**
   * @brief Resize the output matrix size.
   * And reset value to zero
   */
  void reserveOutput(size_t height, size_t width, size_t nnz);

  /**
   * @brief Fill candidates to select several activations as output.
   * @param candidates specifies several selected columns of the parameter
   * matrices of this layer.
   * Multiplications only between the input matrices and the selected columns
   * are computed.
   * If the candidates is a nullptr, selective fc layer acts exactly like the
   * fully connected layer.
   * @note CURRENTLY, THIS METHOD IS ONLY USED FOR BEAM SEARCH
   */
  void fillSelectiveData(
      const std::shared_ptr<std::vector<std::pair<int*, size_t>>>& candidates);

Y
Yu Yang 已提交
94 95
  void forward(PassType passType) override;
  void backward(const UpdateCallback& callback = nullptr) override;
Z
zhangjinchao01 已提交
96

W
Wu Yi 已提交
97
 private:
Z
zhangjinchao01 已提交
98 99 100
  /**
   * @brief Make SelectiveFC act as FullyConnectedLayer
   */
101
  void fillFullySelectiveData() { fullOutput_ = true; }
Z
zhangjinchao01 已提交
102 103
};
}  // namespace paddle