diff --git a/lhotse/features/base.py b/lhotse/features/base.py index 60bb909d5..ef4b161a1 100644 --- a/lhotse/features/base.py +++ b/lhotse/features/base.py @@ -472,7 +472,7 @@ def load( start = self.start # In case the caller requested only a sub-span of the features, trim them. # Left trim - if start < self.start - 1e-5: + if start < self.start - 1e-3: raise ValueError( f"Cannot load features for recording {self.recording_id} starting from {start}s. " f"The available range is ({self.start}, {self.end}) seconds."