CRFLayer.cpp 3.6 KB
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/* Copyright (c) 2016 Baidu, Inc. All Rights Reserve.

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. */

#include "CRFLayer.h"

namespace paddle {

REGISTER_LAYER(crf, CRFLayer);

bool CRFLayer::init(const LayerMap& layerMap,
                    const ParameterMap& parameterMap) {
  /* Initialize the basic parent class */
  Layer::init(layerMap, parameterMap);

  if (config_.type() == "crf") {
    CHECK_GE(inputLayers_.size(), 2UL);
    // the third output is sequence weight. one weight for each sequence
    CHECK_LE(inputLayers_.size(), 3UL);
  }

  // coeff only affect bp, keep consistent with CostLayer
33
  coeff_ = config_.coeff();
Z
zhangjinchao01 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
  if (inputLayers_.size() == 3) {
    weightLayer_ = inputLayers_[2];
  }

  numClasses_ = inputLayers_[0]->getSize();

  CHECK_GE(numClasses_, 2UL);

  CHECK_EQ(parameters_[0]->getSize(), numClasses_ * (numClasses_ + 2));

  parameter_ = parameters_[0];

  // We don't need sequenceStartPositions because each sample of output_ is
  // for the cost of one sequence.
  setNeedSequenceInfo(false);
49

Z
zhangjinchao01 已提交
50 51 52 53 54 55
  return true;
}

void CRFLayer::forward(PassType passType) {
  Layer::forward(passType);

56 57 58 59
  CHECK(!useGpu_) << "GPU is not supported";

  const Argument& output = getInput(0);
  const Argument& label = getInput(1);
Z
zhangjinchao01 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72
  CHECK(label.sequenceStartPositions);
  CHECK(label.ids);

  int batchSize = output.getBatchSize();
  size_t numSequences = label.sequenceStartPositions->getSize() - 1;
  resizeOutput(numSequences, 1);

  const int* starts = label.sequenceStartPositions->getData(false);
  CHECK_EQ(starts[numSequences], batchSize);

  for (size_t i = 0; i < numSequences; ++i) {
    if (i >= crfs_.size()) {
      crfs_.emplace_back(numClasses_,
73 74
                         parameter_->getBuf(PARAMETER_VALUE)->getData(),
                         parameter_->getBuf(PARAMETER_GRADIENT)
75 76
                             ? parameter_->getBuf(PARAMETER_GRADIENT)->getData()
                             : nullptr);
Z
zhangjinchao01 已提交
77
    }
78 79 80 81
    output_.value->getData()[i] =
        crfs_[i].forward(output.value->getData() + numClasses_ * starts[i],
                         label.ids->getData() + starts[i],
                         starts[i + 1] - starts[i]);
Z
zhangjinchao01 已提交
82
  }
83

Z
zhangjinchao01 已提交
84 85 86 87 88 89
  if (weightLayer_) {
    const MatrixPtr& weight = getInputValue(*weightLayer_);
    getOutputValue()->dotMul(*getOutputValue(), *weight);
  }
}

90
void CRFLayer::backward(const UpdateCallback& callback) {
91 92
  const Argument& output = getInput(0);
  const Argument& label = getInput(1);
Z
zhangjinchao01 已提交
93 94 95 96 97 98 99 100 101 102
  const int* starts = label.sequenceStartPositions->getData(false);
  int numSequences = label.sequenceStartPositions->getSize() - 1;

  for (int i = 0; i < numSequences; ++i) {
    crfs_[i].backward(output.value->getData() + numClasses_ * starts[i],
                      output.grad->getData() + numClasses_ * starts[i],
                      label.ids->getData() + starts[i],
                      starts[i + 1] - starts[i]);
    if (weightLayer_) {
      real weight = getInputValue(*weightLayer_)->getElement(i, 0);
103
      MatrixPtr grad = output.grad->subRowMatrix(starts[i], starts[i + 1]);
Z
zhangjinchao01 已提交
104 105 106
      grad->mulScalar(weight);
    }
  }
107

Z
zhangjinchao01 已提交
108 109 110
  if (coeff_ != real(1.0f)) {
    output.grad->mulScalar(coeff_);
  }
111

Z
zhangjinchao01 已提交
112 113 114 115
  parameter_->incUpdate(callback);
}

}  // namespace paddle