Loads a new regression data set from a LIBSVM file, assuming the label is a numeric target value to predict @param file the file to load @return a regression data set @throws FileNotFoundException if the file was not found @throws IOException if an error occurred reading the input stream
(File file)
| 58 | * @throws IOException if an error occurred reading the input stream |
| 59 | */ |
| 60 | public static RegressionDataSet loadR(File file) throws FileNotFoundException, IOException |
| 61 | { |
| 62 | return loadR(file, 0.5); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Loads a new regression data set from a LIBSVM file, assuming the label is |