From 20911049c27715e07c4ed3f4566b7d8ef8302403 Mon Sep 17 00:00:00 2001 From: Tanuj Rai Date: Mon, 22 Sep 2025 14:33:01 +0530 Subject: [PATCH] docs(Audio): remove unsupported `mono` argument from Audio docstring --- src/datasets/features/audio.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/datasets/features/audio.py b/src/datasets/features/audio.py index d42fe53f009..313d750c111 100644 --- a/src/datasets/features/audio.py +++ b/src/datasets/features/audio.py @@ -47,9 +47,6 @@ class Audio: Args: sampling_rate (`int`, *optional*): Target sampling rate. If `None`, the native sampling rate is used. - mono (`bool`, defaults to `True`): - Whether to convert the audio signal to mono by averaging samples across - channels. decode (`bool`, defaults to `True`): Whether to decode the audio data. If `False`, returns the underlying dictionary in the format `{"path": audio_path, "bytes": audio_bytes}`.