etl_data_set_info.py

class etl_data_set_info.ETLDataSetInfo(code: str, struct_size: int, img_size: Tuple[int, int], img_depth: int, label_index: List[int], decoder: Callable[[List[bytes]], str])

A convenience class for storing information about a data set part.

code [str]

The code which can be used to decode the stored data files of this data set.

struct_size [int]

The size (in bytes) of one entry of this data set type.

img_size Tuple[int, int]

A Tuple with the dimensions of the images in this data set.

img_depth [int]

The depth of the gray channel of this entry’s image.

label_index [int]

The index of the loaded struct in which the label is coded.

decoder [function]

The function which can be used to decode an entry of this data set.