From 0f0b06946570fce45b5b614e94bc846b166c55bb Mon Sep 17 00:00:00 2001 From: Hagen Wierstorf Date: Fri, 12 Jul 2024 18:22:38 +0200 Subject: [PATCH] Store tables per default as parquet files (#452) --- audformat/core/database.py | 2 +- audformat/core/table.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/audformat/core/database.py b/audformat/core/database.py index 2772f0a4..4162785d 100644 --- a/audformat/core/database.py +++ b/audformat/core/database.py @@ -970,7 +970,7 @@ def save( *, name: str = "db", indent: int = 2, - storage_format: str = define.TableStorageFormat.CSV, + storage_format: str = define.TableStorageFormat.PARQUET, update_other_formats: bool = True, header_only: bool = False, num_workers: typing.Optional[int] = 1, diff --git a/audformat/core/table.py b/audformat/core/table.py index 3c9c21fe..55977d83 100644 --- a/audformat/core/table.py +++ b/audformat/core/table.py @@ -579,7 +579,7 @@ def save( self, path: str, *, - storage_format: str = define.TableStorageFormat.CSV, + storage_format: str = define.TableStorageFormat.PARQUET, update_other_formats: bool = True, ): r"""Save table data to disk.