Fix small bugs (info is printed to cerr)

This commit is contained in:
Matous Machacek 2012-02-26 22:23:57 +01:00
parent e8a94a7bd2
commit bd92b0634a

View File

@ -20,7 +20,7 @@ InterpolatedScorer::InterpolatedScorer (const string& name, const string& config
if (_scorers.size() == 0) {
throw runtime_error("There are no scorers");
}
cout << "Number of scorers: " << _scorers.size() << endl;
cerr << "Number of scorers: " << _scorers.size() << endl;
//TODO debug this
string wtype = getConfig("weights","");
@ -55,7 +55,7 @@ InterpolatedScorer::InterpolatedScorer (const string& name, const string& config
for (vector<float>::iterator it = _scorerWeights.begin(); it < _scorerWeights.end(); it++) {
cerr << *it << " " ;
}
cout <<endl;
cerr <<endl;
}