test_CrossEntropyOverBeamGrad.cpp 10.5 KB
Newer Older
C
caoying03 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

C
caoying03 已提交
15
#include <random>
C
caoying03 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#include <sstream>

#include <gtest/gtest.h>
#include "ModelConfig.pb.h"
#include "paddle/gserver/layers/DataLayer.h"
#include "paddle/trainer/Trainer.h"

#include "LayerGradUtil.h"
#include "paddle/testing/TestUtil.h"

using namespace paddle;  // NOLINT

DECLARE_int32(gpu_id);
DECLARE_bool(thread_local_rand_use_global_seed);

C
caoying03 已提交
31 32 33 34
const size_t MAX_SEQ_NUM = 10;
const size_t MAX_SEQ_LEN = 27;
const size_t MAX_BEAM_SIZE = 10;

C
caoying03 已提交
35 36 37 38
struct SingleBeamExpansion {
  vector<int> seqStartPos;
  vector<int> subSeqStartPos;
  vector<real> candidateScores;
39

C
caoying03 已提交
40 41
  // TODO(caoying): store this into Argument.ids
  vector<real> selectedIndices;
C
caoying03 已提交
42

C
caoying03 已提交
43
  vector<int> groundTruth;
C
caoying03 已提交
44 45
  vector<size_t> inBeam;
  vector<int> rowIdxInBeam;
C
caoying03 已提交
46 47
};

C
caoying03 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
void genRand(real* numbers, size_t n) {
  default_random_engine generator;
  uniform_real_distribution<double> distribution(0.0, 1.0);
  for (size_t i = 0; i < n; ++i) numbers[i] = distribution(generator);
}

vector<real> randSampling(real range, int n) {
  CHECK_GE(range, n);
  vector<real> num(range);
  iota(begin(num), end(num), 0.);
  if (range == n) return num;

  random_shuffle(begin(num), end(num));
  num.resize(n);
  sort(begin(num), end(num));
  return num;
}

void genCandidateScores(bool hasSubseq,
                        size_t beamSize,
                        SingleBeamExpansion& prevBeam,
                        SingleBeamExpansion& curBeam) {
  vector<int>& seqStartPos = curBeam.seqStartPos;
  seqStartPos.resize(1, 0);
  vector<int>& subSeqStartPos = curBeam.subSeqStartPos;
  subSeqStartPos.resize(1, 0);

  srand((size_t)(time(NULL)));
  // srand(1);
  if (prevBeam.selectedIndices.size()) {
    if (prevBeam.subSeqStartPos.size() > 1) {
      int seqIdx = 1;
      // samples in previous beam are nested sequences.
      for (size_t i = 1; i < prevBeam.subSeqStartPos.size(); ++i) {
        for (size_t j = 0; j < beamSize; ++j) {
          if (prevBeam.selectedIndices[(i - 1) * beamSize + j] == -1.) break;
          for (size_t k = 0; k < beamSize; ++k)
            subSeqStartPos.push_back(1 + (rand() % MAX_SEQ_LEN) +
                                     subSeqStartPos.back());
        }
        if (prevBeam.seqStartPos[seqIdx] == prevBeam.subSeqStartPos[i]) {
          seqStartPos.push_back(subSeqStartPos.back());
          seqIdx++;
        }
      }
    } else {
      // samples in previous beam are sequences.
      for (size_t i = 0; i <= prevBeam.selectedIndices.size(); ++i) {
        if (i && i % beamSize == 0) {
          seqStartPos.push_back(subSeqStartPos.back());
          if (i == prevBeam.selectedIndices.size()) break;
        }
        if (prevBeam.selectedIndices[i] == -1.) continue;
        subSeqStartPos.push_back(subSeqStartPos.back() +
                                 (1 + (rand() % MAX_SEQ_LEN)));
      }
    }
  } else {
    // the first beam expansion
    int seqNum = 1 + (rand() % MAX_SEQ_NUM);
    for (int i = 0; i < seqNum; ++i) {
      if (hasSubseq) {
        for (size_t j = 0; j < 1 + (rand() % MAX_SEQ_NUM); ++j)
          subSeqStartPos.push_back(subSeqStartPos.back() +
                                   (1 + (rand() % MAX_SEQ_LEN)));
        seqStartPos.push_back(subSeqStartPos.back());
      } else {
        seqStartPos.push_back(seqStartPos.back() +
                              (1 + (rand() % MAX_SEQ_LEN)));
      }
    }
  }

  size_t totalSeqNum = hasSubseq ? subSeqStartPos.back() : seqStartPos.back();
  curBeam.candidateScores.resize(totalSeqNum, 0.);
  genRand(curBeam.candidateScores.data(), totalSeqNum);
}

void genSelectedIndices(size_t beamSize,
127
                        vector<int>& seqStartPos,
C
caoying03 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
                        vector<real>& selectedIndices) {
  size_t selectedIdsCount = beamSize * (seqStartPos.size() - 1);
  selectedIndices.resize(selectedIdsCount, -1.);

  for (size_t i = 0; i < seqStartPos.size() - 1; ++i) {
    int seqLen = seqStartPos[i + 1] - seqStartPos[i];
    int n = min(seqLen, static_cast<int>(beamSize));
    vector<real> ids = randSampling(seqLen, n);
    memcpy(selectedIndices.data() + i * beamSize,
           ids.data(),
           sizeof(real) * ids.size());
  }
}

void genGroundTruth(vector<SingleBeamExpansion>& beamExpansions,
                    size_t beamSize) {
  size_t seqNum = beamExpansions[1].seqStartPos.size() - 1;
  for (size_t i = 2; i < beamExpansions.size(); ++i)
    CHECK_EQ(seqNum, beamExpansions[i - 1].seqStartPos.size() - 1);

  // srand(1);
  srand((size_t)(time(NULL)));

  // initialize the first beam.
  SingleBeamExpansion& beam = beamExpansions[1];
  beam.groundTruth.resize(seqNum, 0);
  beam.inBeam.resize(seqNum, 0);
  beam.rowIdxInBeam.resize(seqNum, -1);

  auto begPos = beam.selectedIndices.begin();
  for (size_t i = 0; i < seqNum; ++i) {
    int seqLen = beam.seqStartPos[i + 1] - beam.seqStartPos[i];
    int label = rand() % seqLen;
    auto endPos = begPos + beamSize;
    beam.groundTruth[i] = label;
    if (find(begPos, endPos, real(label)) != endPos) beam.inBeam[i] = 1;
    begPos = endPos;
    beam.rowIdxInBeam[i] = i;
  }

  // iterate over each beam expansions
  for (size_t i = 2; i < beamExpansions.size(); ++i) {
    SingleBeamExpansion& curBeam = beamExpansions[i];
    SingleBeamExpansion& prevBeam = beamExpansions[i - 1];

    curBeam.groundTruth.resize(seqNum, 0);
    curBeam.inBeam.resize(seqNum, 0);
    curBeam.rowIdxInBeam.resize(seqNum, -1);

    // iterate over each sequence
    for (size_t j = 0; j < seqNum; ++j) {
      if (prevBeam.inBeam[j]) {
        // gold sequence falls in the beam in previous search.

        auto begPos = prevBeam.selectedIndices.begin();
        auto endPos = begPos + prevBeam.rowIdxInBeam[j] * beamSize;
        size_t totalExpansion =
            prevBeam.rowIdxInBeam[j] * beamSize - count(begPos, endPos, -1.);
        curBeam.rowIdxInBeam[j] = totalExpansion + prevBeam.groundTruth[j];

        CHECK_LE(curBeam.rowIdxInBeam[j] + 1,
                 curBeam.subSeqStartPos.size() - 1);
        int start = curBeam.subSeqStartPos[curBeam.rowIdxInBeam[j]];
        int end = curBeam.subSeqStartPos[curBeam.rowIdxInBeam[j] + 1];
        CHECK_GT(size_t(end), size_t(start));
        int label = rand() % (end - start);

        curBeam.groundTruth[j] = label;
        auto findBeg = curBeam.selectedIndices.begin() +
                       curBeam.rowIdxInBeam[j] * beamSize;
        auto findEnd = findBeg + beamSize;
        if (find(findBeg, findEnd, real(label)) != findEnd)
          curBeam.inBeam[j] = 1;
      } else {
        // in previous search, gold sequence has fallen off the beam,
        // the beam search stops, here use -1 as a dummy label.
        // It will not used in calculation the cost.
        beamExpansions[i].groundTruth[j] = -1;
      }
    }
  }
}

void genOneBeam(size_t beamSize,
                bool hasSubseq,
                SingleBeamExpansion& prevBeam,
                SingleBeamExpansion& curBeam) {
  genCandidateScores(hasSubseq, beamSize, prevBeam, curBeam);
  genSelectedIndices(beamSize,
                     hasSubseq ? curBeam.subSeqStartPos : curBeam.seqStartPos,
                     curBeam.selectedIndices);
219 220
}

C
caoying03 已提交
221
void genRandomBeamExpansion(size_t expansionCount,
222
                            size_t beamSize,
C
caoying03 已提交
223 224
                            vector<SingleBeamExpansion>& beamExpansions) {
  beamExpansions.clear();
C
caoying03 已提交
225 226 227 228 229 230
  beamExpansions.resize(expansionCount + 1);

  // beamExpansions[0] is reserved.
  for (size_t i = 1; i <= expansionCount; ++i)
    genOneBeam(beamSize, bool(i - 1), beamExpansions[i - 1], beamExpansions[i]);
  genGroundTruth(beamExpansions, beamSize);
C
caoying03 已提交
231 232
}

233 234 235 236
void testCrossEntropyOverBeam(bool useGpu) {
  TestConfig config;
  config.layerConfig.set_type("cross_entropy_over_beam");

C
caoying03 已提交
237
  const size_t expansionCount = 3;
C
caoying03 已提交
238
  const size_t beamSize = MAX_BEAM_SIZE;
C
caoying03 已提交
239
  vector<SingleBeamExpansion> beams;
240
  genRandomBeamExpansion(expansionCount, beamSize, beams);
C
caoying03 已提交
241

242
  size_t seqNum = 0;
C
caoying03 已提交
243
  for (size_t i = 1; i < beams.size(); ++i) {
C
caoying03 已提交
244 245 246 247
    const SingleBeamExpansion& beam = beams[i];
    // create scores for all the candidates
    MatrixPtr candidateScorePtr =
        Matrix::create(beam.candidateScores.size(), 1, false, false);
248 249
    candidateScorePtr->copyFrom(beam.candidateScores.data(),
                                beam.candidateScores.size());
C
caoying03 已提交
250 251 252

    ostringstream paramName;
    paramName << "candidate_scores_" << i;
253

C
caoying03 已提交
254
    if (beam.subSeqStartPos.size() > 1) {
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
      seqNum = beam.subSeqStartPos.size() - 1;
      config.inputDefs.push_back({INPUT_SELF_DEFINE_DATA,
                                  paramName.str(),
                                  candidateScorePtr,
                                  beam.seqStartPos,
                                  beam.subSeqStartPos});
    } else {
      seqNum = beam.seqStartPos.size() - 1;
      config.inputDefs.push_back({INPUT_SELF_DEFINE_DATA,
                                  paramName.str(),
                                  candidateScorePtr,
                                  beam.seqStartPos});
    }
    config.layerConfig.add_inputs();

C
caoying03 已提交
270
    // create indices for the selected candidates
271 272 273 274 275 276 277 278 279
    MatrixPtr selectedCandidates =
        Matrix::create(seqNum, beamSize, false, false);
    selectedCandidates->copyFrom(beam.selectedIndices.data(),
                                 beam.selectedIndices.size());
    paramName.clear();
    paramName << "selected_candidates_" << i;
    config.inputDefs.push_back(
        {INPUT_SELF_DEFINE_DATA, paramName.str(), selectedCandidates});
    config.layerConfig.add_inputs();
C
caoying03 已提交
280 281

    // create the ground truth
282 283
    paramName.clear();
    paramName << "label_" << i;
C
caoying03 已提交
284 285 286
    config.inputDefs.push_back(
        {INPUT_SELF_DEFINE_DATA, paramName.str(), beam.groundTruth});
    config.layerConfig.add_inputs();
C
caoying03 已提交
287 288
  }

289 290
  testLayerGrad(
      config, "cross_entropy_over_beam", seqNum, false, useGpu, false);
C
caoying03 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
}

TEST(Layer, CrossEntropyOverBeam) {
  for (bool useGpu : {false, true}) testCrossEntropyOverBeam(useGpu);
}

int main(int argc, char** argv) {
  initMain(argc, argv);
  hl_start();
  hl_init(FLAGS_gpu_id);
  FLAGS_thread_local_rand_use_global_seed = true;
  srand(1);
  testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
}