This loads a JSAT dataset from an input stream, and will not do any of its own buffering. The DataSet will be returned as either a SimpleDataSet, ClassificationDataSet, or RegressionDataSet depending on what type of dataset was originally written out. @param @para
(InputStream inRaw)
| 490 | * @throws IOException |
| 491 | */ |
| 492 | public static DataSet<?> load(InputStream inRaw) throws IOException |
| 493 | { |
| 494 | return load(inRaw, false); |
| 495 | } |
| 496 | |
| 497 | /** |
| 498 | * Loads in a JSAT dataset as a {@link SimpleDataSet}. So long as the input |