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

RuleExist.h « phrase-extract.7 « training « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 147e362771bf747aa0642250a4393a3fc02f6c11 (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
#pragma once
/*
 *  RuleExist.h
 *  extract
 *
 *  Created by Hieu Hoang on 19/01/2010.
 *  Copyright 2010 __MyCompanyName__. All rights reserved.
 *
 */
#include <vector>
#include "Hole.h"

// reposity of extracted phrase pairs
// which are potential holes in larger phrase pairs
class RuleExist
	{
		friend std::ostream& operator<<(std::ostream&, const RuleExist&);

	protected:
		std::vector< std::vector<HoleList> > m_phraseExist;
		// indexed by source pos. and source length 
		// maps to list of holes where <int, int> are target pos
		
	public:
		RuleExist(size_t size)
		:m_phraseExist(size)
		{
			// size is the length of the source sentence
			for (size_t pos = 0; pos < size; ++pos)
			{
				// create empty hole lists
				std::vector<HoleList> &endVec = m_phraseExist[pos];
				endVec.resize(size - pos);
			}
		}
		
		void Add(int startT, int endT, int startS, int endS)
		{
			// m_phraseExist[startS][endS - startS].push_back(Hole(startT, endT));
			m_phraseExist[startT][endT - startT].push_back(Hole(startS, endS, startT, endT));
		}
		//const HoleList &GetTargetHoles(int startS, int endS) const
		//{
		//	const HoleList &targetHoles = m_phraseExist[startS][endS - startS];
		//	return targetHoles;
		//}
		const HoleList &GetSourceHoles(int startT, int endT) const
		{
			const HoleList &sourceHoles = m_phraseExist[startT][endT - startT];
			return sourceHoles;
		}
		
		const size_t GetSize() const
		{ return m_phraseExist.size(); }
	};