dataeval.types.DatasetInfo¶
- class dataeval.types.DatasetInfo¶
Descriptive metadata for a dataset artifact.
All fields except
nameare optional so the schema accommodates partially-known datasets (e.g. when class names are unavailable).- class_names¶
Ordered list of class names (length should equal
n_classeswhen both set).- Type:¶
list of str or None
- splits¶
Per-split sample counts (e.g.
{"train": 800, "val": 100, "test": 100}).- Type:¶
dict of str to int or None
- selections¶
Applied selection lineage, grouped by construction call to mirror
dataeval.selection.Select.selection_groups. The outer list is ordered innermost (oldest) first; each inner list is oneSelect(...)call’s worth of selectors.- Type:¶
list of list of SelectionInfo or None