URL or local path to get CSV file. If it's a local path, it
must have prefix file:// and it only works in node environment.
Optional csvConfig: CSVConfig(Optional) A CSVConfig object that contains configurations of reading and decoding from CSV file(s).
Generated using TypeDoc
Create a
CSVDatasetby reading and decoding CSV file(s) from provided URL or local path if it's in Node environment.Note: If isLabel in columnConfigs is
truefor at least one column, the element in returnedCSVDatasetwill be an object of{xs:features, ys:labels}: xs is a dict of features key/value pairs, ys is a dict of labels key/value pairs. If no column is marked as label, returns a dict of features only.