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

Sentence.h « PhraseBased « moses2 « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e9e834a7186964edf44bbac8950fb91d2e3e3bf (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
/*
 * Sentence.h
 *
 *  Created on: 14 Dec 2015
 *      Author: hieu
 */
#pragma once

#include <boost/property_tree/ptree.hpp>
#include <string>
#include "PhraseImpl.h"
#include "../InputType.h"
#include "../MemPool.h"
#include "../pugixml.hpp"
#include "../legacy/Util2.h"

namespace Moses2
{
class FactorCollection;
class System;

class Sentence: public InputType, public PhraseImpl
{
public:

  static Sentence *CreateFromString(MemPool &pool, FactorCollection &vocab,
      const System &system, const std::string &str);

  Sentence(MemPool &pool, size_t size)
  :InputType(pool)
  ,PhraseImpl(pool, size)
  {}

  virtual ~Sentence()
  {}

protected:
  static Sentence *CreateFromStringXML(MemPool &pool, FactorCollection &vocab,
      const System &system, const std::string &str);

  static void XMLParse(
	  MemPool &pool,
	  const System &system,
      size_t depth,
      const pugi::xml_node &parentNode,
      std::vector<std::string> &toks,
      std::vector<XMLOption*> &xmlOptions);

};

} /* namespace Moses2 */