fix(audio feature shape): fixing audio feature shape ordering (frames first, channels second)

This commit is contained in:
CarolinePascal
2025-04-22 17:06:10 +02:00
parent e714ff22e2
commit e4dd00c8f5
3 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ def audio_dataset(tmp_path, empty_lerobot_dataset_factory):
features = {
"audio": {
"dtype": "audio",
"shape": (DUMMY_AUDIO_CHANNELS,),
"shape": (1, DUMMY_AUDIO_CHANNELS),
"names": [
"channels",
],