csv
CsvDataLoader(path, separator=',')
Bases: Dataset
DataLoader for CSV files.
Initialize the CsvDataLoader.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str | Path
|
Path to the CSV file. |
required |
separator
|
str
|
Value separator. Defaults to ",". |
','
|
Source code in src/flowcean/environments/csv.py
14 15 16 17 18 19 20 21 22 23 |
|