mani
mani
Will do with pleasure! Btw it's not just Collect and Prepare data, there are more sections to it! ;)
> True, we should better rename the guides, maybe let's think about names once they are finished? Lets get them done first and then when we finish we will have...
I suggest also to think of LaTex and other formats i.e. Markdown or AsciiDoc, someone might want to publish a book from it. So Kindle, Mobi...etc.. are also options.
Extend the CSVLoader class to read from different datasources/targets and different kinds of formats
@Craigacp I agree with the points above, maybe I wasn't clear enough. I meant inheriting from `CSVDatasource` and creating implementations that do that separately, like you mentioned `CSVDataSource`, `IDXDataSource`, `JsonDataSource`,...
Extend the CSVLoader class to read from different datasources/targets and different kinds of formats
About compressed files, directory/folder support won't be necessary, just allowing it to detect that it's compressed csv/json file is more than enough. There may be use-cases for such usage as...
> There isn't a helper to write out a csv file of predictions. You can save the dataset back out using `CSVSaver`, but that won't have the predicted values in...
> Ok. I'm not sure where such a method should live. We have done this in the past when writing out classification outputs for comparison against other systems, but it...
Also, another question sort of related to this one, say I have this block of code: ``` var mutableValidationDataset = new MutableDataset(wineSource); for (var i: mutableValidationDataset.getData()) { System.out.println(i); } ```...
I used your tips and some workarounds to get my solutions but ideally, it would be good to have them via cleaner methods (flows) i.e. class/instance level methods to get...
PR #74 partially implements this enhancement - @isaiah @blalasaadri can one of you confirm this?