mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-31 19:01:28 +00:00
* Add extensive language support * Address review: split persistent/event schemas, drop event timestamps - recipe.py: derive _VALID_ROLES/_VALID_STREAMS from MessageRole/MessageStream Literals - dataset_metadata.py: keep CODEBASE_VERSION at v3.0 - language.py: remove RESERVED_STYLES; split arrow/feature schemas into persistent (with timestamp) and event (without timestamp); add docstrings - language_render.py: events use frame-row timestamp implicitly; no per-event timestamp filtering or sorting - converters.py: drop unused subtask_key passthrough - add docstrings to new public APIs (recipe, render_messages_processor, collate) - update tests for split schemas; revert uv.lock Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * Add docstrings to all new helpers; revert uv.lock Covers private helpers in recipe.py, language.py, language_render.py, and render_messages_processor.py. Also reverts uv.lock to main (it was re-generated by `uv run` during local checks). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(language): add motion (persistent) and trace (event-only) styles Promote the previously-reserved motion/trace styles to first-class core styles. motion routes to language_persistent (it tracks robot state over time); trace routes to language_events (single-moment annotations). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(language): per-camera tagging on view-dependent styles Adds a nullable `camera` field to the language row struct (both persistent and event variants) so view-dependent styles like `vqa` can carry which `observation.images.*` view they were grounded against. Without this, multi-camera datasets ended up with multiple `(vqa, role)` rows at the same timestamp that the resolver could not disambiguate. - `language.py`: add `camera` to PERSISTENT_ROW_FIELDS / EVENT_ROW_FIELDS, to both Arrow struct types and the HF datasets feature mappings; introduce VIEW_DEPENDENT_STYLES = {vqa, motion, trace} plus `is_view_dependent_style` and `validate_camera_field` helpers (camera required iff style is view-dependent). - `language_render.py`: thread an optional `camera=` kwarg through every resolver (`active_at`, `emitted_at`, `nth_prev`, `nth_next`) and through `_matching_rows` / `_select_*`, so recipes can disambiguate per-camera VQA with `emitted_at(t, style=vqa, role=assistant, camera=...)`. Without a `camera` filter, multi-row matches keep raising the existing ambiguity error — which is the desired behaviour on multi-camera data. - `recipes/pi05_hirobot.yaml`: replace the single `ask_vqa` branch with `ask_vqa_top` and `ask_vqa_wrist` per-camera sub-recipes (each carrying the matching image block), keeping the original 0.20 budget and documenting the customization point for datasets with different cameras. - Tests: schema test asserts the new field order; new tests cover `is_view_dependent_style`, `validate_camera_field` (both required and forbidden directions), per-camera `emitted_at` filtering, and the ambiguity error when two cameras emit `(vqa, assistant)` at the same timestamp without a `camera=` filter. RenderMessagesStep + dataset passthrough fixtures updated to include the new field. - `docs/source/language_and_recipes.mdx`: document the `camera` field, the per-camera resolver pattern, and the canonical recipe convention. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(language): drop motion from VIEW_DEPENDENT_STYLES Motion primitives are described in robot-frame (joint / Cartesian) terms, not pixel space, so they are camera-agnostic. Only `vqa` (event) and `trace` (event, pixel-trajectory) are view-dependent. The `camera` field stays on PERSISTENT_ROW_FIELDS for schema symmetry — the validator, resolver, and HF feature mapping behave identically across the two columns regardless of which styles populate `camera` today — but persistent rows now always have `camera=None` in practice. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(language): task_aug style + automatic ${task} rephrasing rotation Adds task-prompt diversity (Xiao 2022 / CAST) without touching ``meta/tasks.parquet`` or forcing recipes to opt in. The plan reserved ``task_aug`` as a future style; this lands it now. - ``language.py``: add ``task_aug`` to ``CORE_STYLES`` and ``PERSISTENT_STYLES``. ``column_for_style("task_aug")`` returns ``language_persistent`` so PR 2 writers route it correctly. - ``language_render.py``: ``_resolve_task`` now consults the persistent slice for rows of ``style="task_aug", role="user"``. When any exist it picks one deterministically by ``sample_idx`` (blake2b-keyed, not Python's randomized hash) so an epoch sees every rephrasing of every episode while the same sample still resolves identically across reruns. Falls back to the canonical ``meta/tasks.parquet`` task when no rephrasings are present, so existing datasets and unannotated runs keep their behaviour. Explicit ``task=`` overrides still win. - Tests: rephrasing coverage across samples, determinism on repeat ``sample_idx``, fallback when persistent has no ``task_aug`` rows, and explicit override priority. Recipes get this for free: any ``${task}`` placeholder rotates through the available rephrasings. Recipes that want the literal canonical task can override the binding. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(language): tool catalog in meta/info.json + LeRobotDatasetMetadata.tools Stores OpenAI-style function schemas at ``meta/info.json["tools"]`` so datasets can declare which tools are available (today: just ``say``; tomorrow: per-dataset extensions). The ``DEFAULT_TOOLS`` constant fills in for unannotated datasets so chat-template consumers don't have to special-case anything. Three pieces: - ``language.py``: ``SAY_TOOL_SCHEMA`` and ``DEFAULT_TOOLS`` constants. Single source of truth — PR 2's writer and PR 3's runtime tool registry will both import from here instead of duplicating the dict. - ``dataset_metadata.py``: ``LeRobotDatasetMetadata.tools`` property reads ``info.json["tools"]`` and falls back to ``DEFAULT_TOOLS``. Returns deep-copied dicts so callers can mutate the result safely. - ``docs/source/tools.mdx``: spec page covering the catalog, per-row invocations, and the three-step "how to add a new tool" workflow (declare schema, implement, register). Linked from the docs toctree under the Datasets section. This lays the groundwork for PR 2's pipeline writing the catalog out during annotation, and PR 3's ``src/lerobot/tools/`` package shipping runnable implementations (one file per tool — first up: ``say.py`` wrapping Kyutai's pocket-tts). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * Apply ruff and prettier formatting after merge Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * refactor(language): unify resolver dispatch and prune redundant test scaffolding * Drop the unused `events` kwarg from `active_at`/`nth_prev`/`nth_next`; only `emitted_at` actually consults events. The dispatcher in `_resolve_spec` now passes events conditionally. * Replace the dual `_persistent_sort_key`/`_event_sort_key` pair with a single `_row_sort_key` and drop the `sort_key` parameter from `_select_one`. Event rows lack `timestamp` (it is implicit in the frame) and now default to `0.0` for sort purposes — the `(style, role)` tiebreaker is unchanged. * Inline `_select_latest` into `active_at` (its only caller). * Collapse `emitted_at`'s dual-branch into one `_select_one` call. * Tighten `_validate_persistent_resolver` to a single `column_for_style(style) != LANGUAGE_PERSISTENT` check. * Parameterize `test_per_camera_blend_renders_both_views` over the two cameras and factor the sub-recipe builder into `_vqa_subrecipe` so the test no longer hand-rolls two near-identical recipe blocks. Net -98 LOC; behavior, public resolver names, and test expectations unchanged. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(language): always raise on ambiguous resolver matches `_select_one` previously skipped its ambiguity check whenever any of `role`/`tool_name`/`camera` was set, on the assumption that the caller had already pinned down a unique row. That left a real ambiguity hole for VQA: with two cameras emitting `(vqa, assistant)` at the same frame, `emitted_at(..., role="assistant")` silently picked the first sorted row instead of telling the recipe to add `camera=...`. The existing `test_emitted_at_raises_on_ambiguous_per_camera_vqa` test already encoded the desired behavior. Tighten the check: any time `len(rows) > 1` we now raise with the selectors echoed back, so users see exactly which fields they passed and that more is needed to disambiguate. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: fix CI — collapse short ValueError to one line, refresh uv.lock * `ruff format` on CI (newer version) wants the short `camera=None` ValueError on a single line. * `uv.lock` was stale relative to `pyproject.toml`'s `datasets>=4.7.0` pin (and picked up upstream `s390x` marker fixes for cuda packages). CI runs `uv sync --locked` which rejected the divergence. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(language): keep base install green — drop processor re-export, gate dataset-extra tests `lerobot.processor` re-exported `RenderMessagesStep` at the package level, so importing anything from `lerobot.processor` pulled in `lerobot.datasets.language` → `lerobot.datasets/__init__.py` → `require_package("datasets")`, which fails in the Tier 1 base install that intentionally omits the `[dataset]` extra. The chain bricked collection for unrelated suites (`tests/policies/pi0_pi05/...`, `tests/envs/...`, etc.). * Stop re-exporting `RenderMessagesStep` from `lerobot.processor`. The only consumer (the test) already imports from the submodule. Document the deliberate omission in the module docstring. * Add `pytest.importorskip("datasets", ...)` (and `pandas` where needed) at the top of the four PR-added tests that exercise the language stack: - tests/datasets/test_language.py - tests/datasets/test_language_render.py - tests/processor/test_render_messages_processor.py - tests/utils/test_collate.py Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(language): address review — tools accessor, motion docs, conditional collate * **`meta.tools` actually reads `info.json["tools"]`.** `DatasetInfo` had no `tools` field, so `from_dict` silently dropped the key (it warned about unknown fields then discarded them) and the property always returned `DEFAULT_TOOLS`. Added `tools: list[dict] | None` to the dataclass; `to_dict()` drops it when unset so existing datasets keep a clean `info.json`. Fixed the accessor to read `self.info.tools` (the previous `.get(...)` would have raised AttributeError on the dataclass anyway). Added regression tests: fallback when absent, round-trip from disk, and round-trip through `DatasetInfo.from_dict` / `to_dict`. * **`motion` is not view-dependent — fix the docs.** The mdx claimed rows of style `motion` must carry `camera`, but `VIEW_DEPENDENT_STYLES = {"vqa", "trace"}` and the validator agrees: motion primitives are joint/Cartesian-frame, not pixel-space. Updated both call-out paragraphs in `language_and_recipes.mdx`. * **Conditional `collate_fn` swap.** Added `meta.has_language_columns` and gate the `lerobot_collate_fn` swap in `lerobot_train.py` on it, so non-language datasets keep PyTorch's `default_collate`. Also added a pass-through test in `test_collate.py` that asserts on a plain tensor batch the custom collate matches `default_collate` key-for-key, plus a test for the `None`-sample drop path. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * review: dedupe regex, centralize column names, harden collate, more tests * **#2 — dedupe `_PLACEHOLDER_RE`.** The same regex was compiled in `recipe.py` and `language_render.py`. Promote to module-level `PLACEHOLDER_RE` in `recipe.py` (its primary owner — declares template syntax) and import from `language_render.py`. * **#3 — centralize language column names.** `io_utils.py` had hardcoded `{"language_persistent", "language_events"}` literals at two sites. Replace with `LANGUAGE_COLUMNS` import so a future column rename can't silently desync. * **#4 — defensive collate preserved-keys.** `lerobot_collate_fn` silently filtered language fields from samples that didn't have them, which would hand downstream consumers a preserved list shorter than the tensor batch. Now: if any sample carries a key, every sample in the batch must carry it; otherwise raise a `ValueError` so the upstream rendering bug surfaces at the boundary. * **#5 — `_scalar` rejects non-singleton lists.** Previously a zero- or multi-element list fell through and triggered confusing `float([])` errors downstream. Now raises `ValueError` with the actual length. * **#6 — refactor `_extract_complementary_data`.** Replace 11 lines of `key = {... if ... else {}}` plus an 11-line splat dict with a single `_COMPLEMENTARY_KEYS` tuple iterated once. * **#7 — document `EXTENDED_STYLES`.** Was an empty `set()` with no comment. Add a docstring explaining it's an intentional extension point: downstream modules append project-local styles before `column_for_style` is called. * **#9 — `tools.mdx` notes the runtime layer is future work.** The page referenced `src/lerobot/tools/`, `registry.py`, and `get_tools(meta)` — none exist in this PR. Added a callout at the start of "How to add your own tool" plus a note on the implementations paragraph. * **#10 — tests for YAML round-trip, malformed rows, blend validation.** `test_recipe.py` grew from 1 case to 12 covering: blend-or-messages exclusivity, target-turn requirement, blend emptiness, weight presence/positivity, nested-blend rejection, `from_dict` with nested blends, `from_yaml` / `load_recipe` agreement, top-level non-mapping rejection. Added a malformed-row test for `_normalize_rows` that asserts non-dict entries raise `TypeError`. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * review: emitted_at uses 0.1s tolerance; MessageTurn requires stream at construction * **Float tolerance in `emitted_at` for persistent styles.** The ``_timestamp(row) == t`` exact-equality check silently missed any caller that derived ``t`` arithmetically (e.g. ``frame_idx / fps``) even though the parquet timestamp would only differ by ULPs. Added ``EMITTED_AT_TOLERANCE_S = 0.1`` and check ``abs(...) <= tolerance`` instead, with a docstring explaining why exact equality wasn't enough and why 0.1 s is safe at typical 30–100 Hz control rates. Test asserts the new behavior at half-window (matches) and double-window (no match) using the constant so it stays in sync. * **`MessageTurn.stream` is required at construction.** It was typed ``MessageStream | None = None`` so YAML could omit ``stream:`` and pass the dataclass invariant — but ``_validate_rendered`` rejected ``None`` streams later, surfacing the error at the first sample instead of at recipe load. Now ``__post_init__`` raises ``ValueError`` if ``stream`` is ``None``, with the list of valid streams in the message. The redundant late-stage check in ``_validate_rendered`` is replaced with a one-line comment that cites the upstream invariant. Test pins the new construction-time rejection. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * docs(tools): drop follow-up-PR references Reword the two callouts in `tools.mdx` to describe the runtime layer in present tense ("not part of the catalog layer shipped today", "those modules don't yet exist in the tree") instead of pointing at a specific follow-up PR. Keeps the doc honest about what works now without coupling it to a particular release order. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * review: address CarolinePascal feedback - language timestamps: float64 -> float32 to match LeRobotDataset frame timestamps (Arrow struct + HF feature) - dataset_metadata: hoist `.language` imports to module top — language.py has no lerobot imports, so there is no circular-import risk - dataset_metadata: add a `meta.tools` setter that persists the catalog to info.json and reloads `meta.info` - feature_utils: validate the `language` dtype instead of returning "" — warn (non-fatal) when a non-empty value is written at record time - centralize the scalar-unwrap helper as `lerobot.utils.utils.unwrap_scalar`, shared by render_messages_processor and language_render - docs: move `## Layer 2 — recipe anatomy` ahead of the resolver sections, which describe recipe bindings rather than dataset layout - language_render: note in EMITTED_AT_TOLERANCE_S that persistent rows change on a human-action timescale, not the camera frame rate Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
432 lines
12 KiB
Python
432 lines
12 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright 2024 The HuggingFace Inc. team. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
import os
|
|
import platform
|
|
import select
|
|
import subprocess
|
|
import sys
|
|
import time
|
|
from collections.abc import Iterator
|
|
from copy import copy, deepcopy
|
|
from datetime import datetime
|
|
from pathlib import Path
|
|
from statistics import mean
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
import numpy as np
|
|
|
|
if TYPE_CHECKING:
|
|
from accelerate import Accelerator
|
|
|
|
|
|
def inside_slurm():
|
|
"""Check whether the python process was launched through slurm"""
|
|
# TODO(rcadene): return False for interactive mode `--pty bash`
|
|
return "SLURM_JOB_ID" in os.environ
|
|
|
|
|
|
def init_logging(
|
|
log_file: Path | None = None,
|
|
display_pid: bool = False,
|
|
console_level: str = "INFO",
|
|
file_level: str = "DEBUG",
|
|
accelerator: Accelerator | None = None,
|
|
):
|
|
"""Initialize logging configuration for LeRobot.
|
|
|
|
In multi-GPU training, only the main process logs to console to avoid duplicate output.
|
|
Non-main processes have console logging suppressed but can still log to file.
|
|
|
|
Args:
|
|
log_file: Optional file path to write logs to
|
|
display_pid: Include process ID in log messages (useful for debugging multi-process)
|
|
console_level: Logging level for console output
|
|
file_level: Logging level for file output
|
|
accelerator: Optional Accelerator instance (for multi-GPU detection)
|
|
"""
|
|
|
|
def custom_format(record: logging.LogRecord) -> str:
|
|
dt = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
|
fnameline = f"{record.pathname}:{record.lineno}"
|
|
pid_str = f"[PID: {os.getpid()}] " if display_pid else ""
|
|
return f"{record.levelname} {pid_str}{dt} {fnameline[-15:]:>15} {record.getMessage()}"
|
|
|
|
formatter = logging.Formatter()
|
|
formatter.format = custom_format
|
|
|
|
logger = logging.getLogger()
|
|
logger.setLevel(logging.NOTSET)
|
|
|
|
# Clear any existing handlers
|
|
logger.handlers.clear()
|
|
|
|
# Determine if this is a non-main process in distributed training
|
|
is_main_process = accelerator.is_main_process if accelerator is not None else True
|
|
|
|
# Console logging (main process only)
|
|
if is_main_process:
|
|
console_handler = logging.StreamHandler()
|
|
console_handler.setFormatter(formatter)
|
|
console_handler.setLevel(console_level.upper())
|
|
logger.addHandler(console_handler)
|
|
else:
|
|
# Suppress console output for non-main processes
|
|
logger.addHandler(logging.NullHandler())
|
|
logger.setLevel(logging.ERROR)
|
|
|
|
if log_file is not None:
|
|
file_handler = logging.FileHandler(log_file)
|
|
file_handler.setFormatter(formatter)
|
|
file_handler.setLevel(file_level.upper())
|
|
logger.addHandler(file_handler)
|
|
|
|
logging.getLogger("httpx").setLevel(logging.WARNING)
|
|
|
|
|
|
def format_big_number(num, precision=0):
|
|
suffixes = ["", "K", "M", "B", "T", "Q"]
|
|
divisor = 1000.0
|
|
|
|
for suffix in suffixes:
|
|
if abs(num) < divisor:
|
|
return f"{num:.{precision}f}{suffix}"
|
|
num /= divisor
|
|
|
|
return num
|
|
|
|
|
|
def say(text: str, blocking: bool = False):
|
|
system = platform.system()
|
|
|
|
if system == "Darwin":
|
|
cmd = ["say", text]
|
|
|
|
elif system == "Linux":
|
|
cmd = ["spd-say", text]
|
|
if blocking:
|
|
cmd.append("--wait")
|
|
|
|
elif system == "Windows":
|
|
cmd = [
|
|
"PowerShell",
|
|
"-Command",
|
|
"Add-Type -AssemblyName System.Speech; "
|
|
f"(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak('{text}')",
|
|
]
|
|
|
|
else:
|
|
raise RuntimeError("Unsupported operating system for text-to-speech.")
|
|
|
|
if blocking:
|
|
subprocess.run(cmd, check=True)
|
|
else:
|
|
subprocess.Popen(cmd, creationflags=subprocess.CREATE_NO_WINDOW if system == "Windows" else 0)
|
|
|
|
|
|
def log_say(text: str, play_sounds: bool = True, blocking: bool = False):
|
|
logging.info(text)
|
|
|
|
if play_sounds:
|
|
say(text, blocking)
|
|
|
|
|
|
def get_channel_first_image_shape(image_shape: tuple) -> tuple:
|
|
shape = copy(image_shape)
|
|
if shape[2] < shape[0] and shape[2] < shape[1]: # (h, w, c) -> (c, h, w)
|
|
shape = (shape[2], shape[0], shape[1])
|
|
elif not (shape[0] < shape[1] and shape[0] < shape[2]):
|
|
raise ValueError(image_shape)
|
|
|
|
return shape
|
|
|
|
|
|
def has_method(cls: object, method_name: str) -> bool:
|
|
return hasattr(cls, method_name) and callable(getattr(cls, method_name))
|
|
|
|
|
|
def unwrap_scalar(value: Any) -> Any:
|
|
"""Unwrap a tensor / numpy scalar / single-element list into a Python scalar.
|
|
|
|
Tensors and numpy scalars expose ``.item()``; single-element lists are
|
|
unwrapped recursively. Anything else is returned unchanged. Centralized
|
|
here so the language renderer and processor steps share one definition.
|
|
|
|
Raises:
|
|
ValueError: If ``value`` is a list with zero or multiple elements.
|
|
"""
|
|
if hasattr(value, "item"):
|
|
return value.item()
|
|
if isinstance(value, list):
|
|
if len(value) != 1:
|
|
raise ValueError(f"Expected a scalar, got list of length {len(value)}: {value!r}")
|
|
return unwrap_scalar(value[0])
|
|
return value
|
|
|
|
|
|
def is_valid_numpy_dtype_string(dtype_str: str) -> bool:
|
|
"""
|
|
Return True if a given string can be converted to a numpy dtype.
|
|
"""
|
|
try:
|
|
# Attempt to convert the string to a numpy dtype
|
|
np.dtype(dtype_str)
|
|
return True
|
|
except TypeError:
|
|
# If a TypeError is raised, the string is not a valid dtype
|
|
return False
|
|
|
|
|
|
def enter_pressed() -> bool:
|
|
if platform.system() == "Windows":
|
|
import msvcrt
|
|
|
|
if msvcrt.kbhit():
|
|
key = msvcrt.getch()
|
|
return key in (b"\r", b"\n") # enter key
|
|
return False
|
|
else:
|
|
return select.select([sys.stdin], [], [], 0)[0] and sys.stdin.readline().strip() == ""
|
|
|
|
|
|
def move_cursor_up(lines):
|
|
"""Move the cursor up by a specified number of lines."""
|
|
print(f"\033[{lines}A", end="")
|
|
|
|
|
|
def get_elapsed_time_in_days_hours_minutes_seconds(elapsed_time_s: float):
|
|
days = int(elapsed_time_s // (24 * 3600))
|
|
elapsed_time_s %= 24 * 3600
|
|
hours = int(elapsed_time_s // 3600)
|
|
elapsed_time_s %= 3600
|
|
minutes = int(elapsed_time_s // 60)
|
|
seconds = elapsed_time_s % 60
|
|
return days, hours, minutes, seconds
|
|
|
|
|
|
def flatten_dict(d: dict, parent_key: str = "", sep: str = "/") -> dict:
|
|
"""Flatten a nested dictionary by joining keys with a separator.
|
|
|
|
Example:
|
|
>>> dct = {"a": {"b": 1, "c": {"d": 2}}, "e": 3}
|
|
>>> print(flatten_dict(dct))
|
|
{'a/b': 1, 'a/c/d': 2, 'e': 3}
|
|
|
|
Args:
|
|
d (dict): The dictionary to flatten.
|
|
parent_key (str): The base key to prepend to the keys in this level.
|
|
sep (str): The separator to use between keys.
|
|
|
|
Returns:
|
|
dict: A flattened dictionary.
|
|
"""
|
|
items = []
|
|
for k, v in d.items():
|
|
new_key = f"{parent_key}{sep}{k}" if parent_key else k
|
|
if isinstance(v, dict):
|
|
items.extend(flatten_dict(v, new_key, sep=sep).items())
|
|
else:
|
|
items.append((new_key, v))
|
|
return dict(items)
|
|
|
|
|
|
def unflatten_dict(d: dict, sep: str = "/") -> dict:
|
|
"""Unflatten a dictionary with delimited keys into a nested dictionary.
|
|
|
|
Example:
|
|
>>> flat_dct = {"a/b": 1, "a/c/d": 2, "e": 3}
|
|
>>> print(unflatten_dict(flat_dct))
|
|
{'a': {'b': 1, 'c': {'d': 2}}, 'e': 3}
|
|
|
|
Args:
|
|
d (dict): A dictionary with flattened keys.
|
|
sep (str): The separator used in the keys.
|
|
|
|
Returns:
|
|
dict: A nested dictionary.
|
|
"""
|
|
outdict = {}
|
|
for key, value in d.items():
|
|
parts = key.split(sep)
|
|
d_inner = outdict
|
|
for part in parts[:-1]:
|
|
if part not in d_inner:
|
|
d_inner[part] = {}
|
|
d_inner = d_inner[part]
|
|
d_inner[parts[-1]] = value
|
|
return outdict
|
|
|
|
|
|
def cycle(iterable: Any) -> Iterator[Any]:
|
|
"""Create a dataloader-safe cyclical iterator.
|
|
|
|
This is an equivalent of `itertools.cycle` but is safe for use with
|
|
PyTorch DataLoaders with multiple workers.
|
|
See https://github.com/pytorch/pytorch/issues/23900 for details.
|
|
|
|
Args:
|
|
iterable: The iterable to cycle over.
|
|
|
|
Yields:
|
|
Items from the iterable, restarting from the beginning when exhausted.
|
|
"""
|
|
iterator = iter(iterable)
|
|
while True:
|
|
try:
|
|
yield next(iterator)
|
|
except StopIteration:
|
|
iterator = iter(iterable)
|
|
|
|
|
|
class SuppressProgressBars:
|
|
"""
|
|
Context manager to suppress progress bars.
|
|
|
|
Example
|
|
--------
|
|
```python
|
|
with SuppressProgressBars():
|
|
# Code that would normally show progress bars
|
|
```
|
|
"""
|
|
|
|
def __enter__(self):
|
|
try:
|
|
from datasets.utils.logging import disable_progress_bar
|
|
|
|
disable_progress_bar()
|
|
except ImportError:
|
|
logging.getLogger(__name__).debug(
|
|
"SuppressProgressBars is a no-op because 'datasets' is not installed."
|
|
)
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
try:
|
|
from datasets.utils.logging import enable_progress_bar
|
|
|
|
enable_progress_bar()
|
|
except ImportError:
|
|
pass
|
|
|
|
|
|
class TimerManager:
|
|
"""
|
|
Lightweight utility to measure elapsed time.
|
|
|
|
Examples
|
|
--------
|
|
```python
|
|
# Example 1: Using context manager
|
|
timer = TimerManager("Policy", log=False)
|
|
for _ in range(3):
|
|
with timer:
|
|
time.sleep(0.01)
|
|
print(timer.last, timer.fps_avg, timer.percentile(90)) # Prints: 0.01 100.0 0.01
|
|
```
|
|
|
|
```python
|
|
# Example 2: Using start/stop methods
|
|
timer = TimerManager("Policy", log=False)
|
|
timer.start()
|
|
time.sleep(0.01)
|
|
timer.stop()
|
|
print(timer.last, timer.fps_avg, timer.percentile(90)) # Prints: 0.01 100.0 0.01
|
|
```
|
|
"""
|
|
|
|
def __init__(
|
|
self,
|
|
label: str = "Elapsed-time",
|
|
log: bool = True,
|
|
logger: logging.Logger | None = None,
|
|
):
|
|
self.label = label
|
|
self.log = log
|
|
self.logger = logger
|
|
self._start: float | None = None
|
|
self._history: list[float] = []
|
|
|
|
def __enter__(self):
|
|
return self.start()
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
self.stop()
|
|
|
|
def start(self):
|
|
self._start = time.perf_counter()
|
|
return self
|
|
|
|
def stop(self) -> float:
|
|
if self._start is None:
|
|
raise RuntimeError("Timer was never started.")
|
|
elapsed = time.perf_counter() - self._start
|
|
self._history.append(elapsed)
|
|
self._start = None
|
|
if self.log:
|
|
if self.logger is not None:
|
|
self.logger.info(f"{self.label}: {elapsed:.6f} s")
|
|
else:
|
|
logging.info(f"{self.label}: {elapsed:.6f} s")
|
|
return elapsed
|
|
|
|
def reset(self):
|
|
self._history.clear()
|
|
|
|
@property
|
|
def last(self) -> float:
|
|
return self._history[-1] if self._history else 0.0
|
|
|
|
@property
|
|
def avg(self) -> float:
|
|
return mean(self._history) if self._history else 0.0
|
|
|
|
@property
|
|
def total(self) -> float:
|
|
return sum(self._history)
|
|
|
|
@property
|
|
def count(self) -> int:
|
|
return len(self._history)
|
|
|
|
@property
|
|
def history(self) -> list[float]:
|
|
return deepcopy(self._history)
|
|
|
|
@property
|
|
def fps_last(self) -> float:
|
|
return 0.0 if self.last == 0 else 1.0 / self.last
|
|
|
|
@property
|
|
def fps_avg(self) -> float:
|
|
return 0.0 if self.avg == 0 else 1.0 / self.avg
|
|
|
|
def percentile(self, p: float) -> float:
|
|
"""
|
|
Return the p-th percentile of recorded times.
|
|
"""
|
|
if not self._history:
|
|
return 0.0
|
|
return float(np.percentile(self._history, p))
|
|
|
|
def fps_percentile(self, p: float) -> float:
|
|
"""
|
|
FPS corresponding to the p-th percentile time.
|
|
"""
|
|
val = self.percentile(p)
|
|
return 0.0 if val == 0 else 1.0 / val
|