vla / workspace /dovla_cil /data /__init__.py
anhtld's picture
auto-sync 2026-07-02T17:27:17Z workspace
be88186 verified
Raw
History Blame Contribute Delete
967 Bytes
"""CIL data schemas and storage utilities."""
from dovla_cil.data.datasets import CILDataset, CILJsonlDataset
from dovla_cil.data.group_sampler import BatchIndices, GroupAwareBatchSampler, GroupBatchSampler
from dovla_cil.data.lerobot_export import LeRobotExportConfig, export_lerobot_style_dataset
from dovla_cil.data.schema import (
ActionChunk,
CILBenchBranch,
CILBenchGroup,
CILGroup,
CILRecord,
FailureInfo,
OutcomeVector,
RewardInfo,
StructuredEffect,
)
from dovla_cil.data.sharding import ShardReader, ShardWriter
__all__ = [
"ActionChunk",
"BatchIndices",
"CILBenchBranch",
"CILBenchGroup",
"CILDataset",
"CILGroup",
"CILJsonlDataset",
"CILRecord",
"FailureInfo",
"GroupAwareBatchSampler",
"GroupBatchSampler",
"LeRobotExportConfig",
"OutcomeVector",
"RewardInfo",
"ShardReader",
"ShardWriter",
"StructuredEffect",
"export_lerobot_style_dataset",
]