MCPcopy Create free account
hub / github.com/tensorflow/tfjs / csv

Function csv

tfjs-data/src/readers.ts:106–109  ·  view source on GitHub ↗
(
    source: RequestInfo, csvConfig: CSVConfig = {})

Source from the content-addressed store, hash-verified

104 * }
105 */
106export function csv(
107 source: RequestInfo, csvConfig: CSVConfig = {}): CSVDataset {
108 return new CSVDataset(new URLDataSource(source), csvConfig);
109}
110
111/**
112 * Create a `Dataset` that produces each element by calling a provided function.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected