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

ScoreIndexManager.cpp « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d848229b6749e6c8ec0c9dfa174bdde19f2d4209 (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
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
// $Id$

#include <iostream>
#include <iomanip>
#include <string>
#include <cstdio>
#include <cassert>
#include "Util.h"
#include "StaticData.h"
#include "ScoreIndexManager.h"
#include "ScoreProducer.h"
#include "ScoreComponentCollection.h" // debugging

void ScoreIndexManager::AddScoreProducer(const ScoreProducer* sp)
{
	// Producers must be inserted in the order they are created
	const_cast<ScoreProducer*>(sp)->CreateScoreBookkeepingID();
  assert(m_begins.size() == (sp->GetScoreBookkeepingID()));
  
	m_producers.push_back(sp);
  m_begins.push_back(m_last);
	size_t numScoreCompsProduced = sp->GetNumScoreComponents();
	assert(numScoreCompsProduced > 0);
	m_last += numScoreCompsProduced;
	m_ends.push_back(m_last);
	VERBOSE(2,"Added ScoreProducer(" << sp << "): id=" << sp->GetScoreBookkeepingID() << std::endl);
}

void ScoreIndexManager::Debug_PrintLabeledScores(std::ostream& os, const ScoreComponentCollection& scc) const
{
	std::vector<float> weights(scc.m_scores.size(), 1.0f);
	Debug_PrintLabeledWeightedScores(os, scc, weights);
}

static std::string getFormat(float foo) 
{
  char buf[32];
  sprintf(buf, "%.4f", foo);
  return buf;
}

void ScoreIndexManager::Debug_PrintLabeledWeightedScores(std::ostream& os, const ScoreComponentCollection& scc, const std::vector<float>& weights) const
{
  size_t cur_i = 0;
  size_t cur_scoreType = 0;
  while (cur_i < m_last) {
    bool first = true;
		
		size_t nis_idx = 0;
		while (nis_idx < m_producers[cur_scoreType]->GetNumInputScores()){
      os << "  " << getFormat(scc.m_scores[cur_i]) << "\t" << getFormat(scc.m_scores[cur_i] * weights[cur_i]) << "\t  " << (cur_i < 10 ? " " : "") << cur_i << " ";
			if (first) {
				os << m_producers[cur_scoreType]->GetScoreProducerDescription()
				<< std::endl;
				first = false;
			} else {
				os << "    \"         \"" << std::endl;
			}
			nis_idx++;
			cur_i++;
		}
		
		first = true;
    while (cur_i < m_ends[cur_scoreType]) {
      os << "  " << getFormat(scc.m_scores[cur_i]) << "\t" << getFormat(scc.m_scores[cur_i] * weights[cur_i]) << "\t  " << (cur_i < 10 ? " " : "") << cur_i << " ";
      if (first) {
        os << m_producers[cur_scoreType]->GetScoreProducerDescription()
				   << std::endl;
        first = false;
      } else {
        os << "    \"         \"" << std::endl;
      }
      cur_i++;
    }
    cur_scoreType++;
  }
}

std::ostream& operator<<(std::ostream& os, const ScoreIndexManager& sim)
{
	size_t cur_i = 0;
	size_t cur_scoreType = 0;
	while (cur_i < sim.m_last) {
		bool first = true;

		size_t nis_idx = 0;
		while (nis_idx < sim.m_producers[cur_scoreType]->GetNumInputScores()){
			os << "  " << (cur_i < 10 ? " " : "") << cur_i << " ";
			if (first) {
				os << sim.m_producers[cur_scoreType]->GetScoreProducerDescription()
				   << std::endl;
				first = false;
			} else {
				os << "    \"         \"" << std::endl;
			}
			nis_idx++;
			cur_i++;
		}

		first = true;
		while (cur_i < sim.m_ends[cur_scoreType]) {
			os << "  " << (cur_i < 10 ? " " : "") << cur_i << " ";
			if (first) {
				os << sim.m_producers[cur_scoreType]->GetScoreProducerDescription()
					 << std::endl;
				first = false;
			} else {
				os << "    \"         \"" << std::endl;
			}
			cur_i++;
		}
		cur_scoreType++;
	}
	return os;
}