diff options
author | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2012-05-18 13:16:03 +0200 |
---|---|---|
committer | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2012-05-18 13:16:03 +0200 |
commit | 47e9deff1c2cbd104d6e2822703cc83df625d8aa (patch) | |
tree | 72d2db8fc921a48e1b6306255ebbe5e7408e034b /creg/creg.cc | |
parent | 37050e861de2b216d3a28f79e111b674c5d142ac (diff) | |
parent | 05b86961fa7e04d47cf729ea27e27c527f895da0 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'creg/creg.cc')
-rw-r--r-- | creg/creg.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/creg/creg.cc b/creg/creg.cc index 005ec9ac..b145ac49 100644 --- a/creg/creg.cc +++ b/creg/creg.cc @@ -65,7 +65,7 @@ void ReaderCB(const string& id, const SparseVector<float>& fmap, void* extra) { if (rh.lc % 40000 == 0) { cerr << " [" << rh.lc << "]\n"; rh.flag = false; } const unordered_map<string, unsigned>::iterator it = rh.id2ind.find(id); if (it == rh.id2ind.end()) { - cerr << "Unlabeled example in line " << rh.lc << endl; + cerr << "Unlabeled example in line " << rh.lc << " (key=" << id << ')' << endl; abort(); } (*rh.xy_pairs)[it->second - 1].x = fmap; |