DataLoader¶
DataLoader
is the parent class from which all data loaders inherit. It is used to load data from a dataset into a format that can be used by the model.
Code Documentation¶
Source code in evaluations/dataloaders/dataloader.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
process_files()
¶
Process all input files in the dataset.
Returns:
Type | Description |
---|---|
None
|
None |
Source code in evaluations/dataloaders/dataloader.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|