Loads in a JSAT dataset as a SimpleDataSet. So long as the input stream is valid, this will not fail. @param inRaw the input stream, caller should buffer it @return a SimpleDataSet object @throws IOException
(InputStream inRaw)
| 503 | * @throws IOException |
| 504 | */ |
| 505 | public static SimpleDataSet loadSimple(InputStream inRaw) throws IOException |
| 506 | { |
| 507 | return (SimpleDataSet) load(inRaw, true); |
| 508 | } |
| 509 | |
| 510 | /** |
| 511 | * Loads in a JSAT dataset as a {@link ClassificationDataSet}. An exception |