Closed GoogleCodeExporter closed 8 years ago
Resizing _sampleHeaders in readARFF function fixed the error for me.
Index: treedata.cpp
===================================================================
--- treedata.cpp (revision 787)
+++ treedata.cpp (working copy)
@@ -403,6 +403,7 @@
}
assert(sampleIdx = nLines);
+ sampleHeaders_.resize(sampleIdx,"NO_SAMPLE_ID");
}
Original comment by star...@gmail.com
on 18 Feb 2013 at 3:41
Thanks for the report. I wrote some fixes to ARFF parsing, one of which is the
one you proposed; indeed, I had forgotten to extend the sample headers once the
data was read.
Original comment by timo.erk...@gmail.com
on 10 Mar 2013 at 11:55
Original issue reported on code.google.com by
star...@gmail.com
on 17 Feb 2013 at 7:46