Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions cosmos_framework/data/vfm/action/datasets/base_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def __init__(
self._pose_convention = pose_convention
self._tolerance_s = float(tolerance_s)
self._viewpoint = viewpoint
self._domain_name = domain_name
self._domain_id = get_domain_id(domain_name)
self._action_normalization = action_normalization
self._norm_stats: dict[str, torch.Tensor] | None = None
Expand Down Expand Up @@ -97,6 +98,14 @@ def mode(self) -> str:
def mode(self, value: str) -> None:
self._mode = value

@property
def domain_name(self) -> str:
return self._domain_name

@property
def viewpoint(self) -> str:
return self._viewpoint

@property
def domain_id(self) -> int:
return self._domain_id
Expand Down