Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TrellisPath.h « PhraseBased « moses2 « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0b989ad9cf4a8bbf4977e0aa248cdd7a051b889 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
/*
 * TrellisPath.h
 *
 *  Created on: 16 Mar 2016
 *      Author: hieu
 */
#pragma once
#include <vector>
#include "../TypeDef.h"
#include "../ArcLists.h"

namespace Moses2
{

class Scores;
class MemPool;
class Hypothesis;
class System;

template<typename T>
class TrellisPaths;

class TrellisNode
{
public:
  const ArcList *arcList;
  size_t ind;

  TrellisNode(const ArcList &varcList, size_t vind) :
      arcList(&varcList), ind(vind)
  {
  }

  const HypothesisBase *GetHypo() const
  {
    return (*arcList)[ind];
  }

  std::string Debug(const System &system) const;

};

class TrellisPath
{
public:
  std::vector<TrellisNode> nodes;
  int prevEdgeChanged;

  /**< the last node that was wiggled to create this path
   , or NOT_FOUND if this path is the best trans so consist of only hypos
   */
  TrellisPath(const Hypothesis *hypo, const ArcLists &arcLists);

  /** create path from another path, deviate at edgeIndex by using arc instead,
   * which may change other hypo back from there
   */
  TrellisPath(const TrellisPath &origPath, size_t edgeIndex,
      const TrellisNode &newNode, const ArcLists &arcLists, MemPool &pool,
      const System &system);

  virtual ~TrellisPath();

  const Scores &GetScores() const
  {
    return *m_scores;
  }
  SCORE GetFutureScore() const;

  std::string Debug(const System &system) const;

  void OutputToStream(std::ostream &out, const System &system) const;
  std::string OutputTargetPhrase(const System &system) const;

  //! create a set of next best paths by wiggling 1 of the node at a time.
  void CreateDeviantPaths(TrellisPaths<TrellisPath> &paths, const ArcLists &arcLists,
      MemPool &pool, const System &system) const;

protected:
  const Scores *m_scores;

  void AddNodes(const Hypothesis *hypo, const ArcLists &arcLists);
  void CalcScores(const Scores &origScores, const Scores &origHypoScores,
      const Scores &newHypoScores, MemPool &pool, const System &system);
};

} /* namespace Moses2 */