DataHandler.ConfigΒΆ

Component: DataHandler

class DataHandler.Config[source]

Bases: ConfigBase

All Attributes (including base classes)

columns_to_read: list[str] = []
shuffle: bool = True
sort_within_batch: bool = True
train_path: str = 'train.tsv'
eval_path: str = 'eval.tsv'
test_path: str = 'test.tsv'
train_batch_size: int = 128
eval_batch_size: int = 128
test_batch_size: int = 128
column_mapping: dict[str, str] = {}
Subclasses
  • DisjointMultitaskDataHandler.Config

Default JSON

{
    "columns_to_read": [],
    "shuffle": true,
    "sort_within_batch": true,
    "train_path": "train.tsv",
    "eval_path": "eval.tsv",
    "test_path": "test.tsv",
    "train_batch_size": 128,
    "eval_batch_size": 128,
    "test_batch_size": 128,
    "column_mapping": {}
}