From 617bebb6175791945ac793980297f98225e673a6 Mon Sep 17 00:00:00 2001 From: fracapuano Date: Thu, 29 May 2025 23:17:02 +0200 Subject: [PATCH] fix: minor --- lerobot/common/datasets/profile_streaming_dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lerobot/common/datasets/profile_streaming_dataset.py b/lerobot/common/datasets/profile_streaming_dataset.py index 99d0cc8f..a9d02c4c 100644 --- a/lerobot/common/datasets/profile_streaming_dataset.py +++ b/lerobot/common/datasets/profile_streaming_dataset.py @@ -163,7 +163,7 @@ def _profile_iteration(dataset, num_samples, stats_file_path): # Add functions to profile profiler.add_function(dataset.__iter__) profiler.add_function(dataset.make_frame) - profiler.add_function(dataset._make_iterable_dataset) + profiler.add_function(dataset._make_backtrackable_dataset) # Profile the iteration