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).
- splits¶
Per-split sample counts (e.g.
{"train": 800, "val": 100, "test": 100}).
- selections¶
Applied selection lineage, grouped by construction call to mirror
dataeval.data.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