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

StoreTarget.h « ProbingPT « TranslationModel « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c7d9e1b71185bffb718ea2439e99005a2233f61 (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
/*
 * StoreTarget.h
 *
 *  Created on: 19 Jan 2016
 *      Author: hieu
 */
#pragma once
#include <string>
#include <fstream>
#include <vector>
#include <inttypes.h>
#include <boost/unordered_map.hpp>
#include <boost/unordered_set.hpp>
#include "StoreVocab.h"

namespace Moses
{

class line_text;
class target_text;

class StoreTarget
{
public:
  StoreTarget(const std::string &basepath);
  virtual ~StoreTarget();

  uint64_t Save();
  void SaveAlignment();

  void Append(const line_text &line, bool log_prob, bool scfg);
protected:
  std::string m_basePath;
  std::fstream m_fileTargetColl;
  StoreVocab<uint32_t> m_vocab;

  typedef boost::unordered_map<std::vector<size_t>, uint32_t> Alignments;
  Alignments m_aligns;

  std::vector<target_text*> m_coll;

  uint32_t GetAlignId(const std::vector<size_t> &align);
  void Save(const target_text &rule);

  void AppendLexRO(std::string &prop, std::vector<float> &retvector,
      bool log_prob) const;

};

} /* namespace Moses2 */