@@ -33,6 +33,8 @@ class LibraryOptions:
3333 See `__init__` for details.
3434 columns_per_segment: int
3535 See `__init__` for details.
36+ recursive_normalizers: bool
37+ See `__init__` for details.
3638 """
3739
3840 def __init__ (
@@ -43,7 +45,7 @@ def __init__(
4345 rows_per_segment : int = 100_000 ,
4446 columns_per_segment : int = 127 ,
4547 encoding_version : Optional [EncodingVersion ] = None ,
46- recursive_normalizers : bool = True ,
48+ recursive_normalizers : bool = False ,
4749 ):
4850 """
4951 Parameters
@@ -126,7 +128,7 @@ def __init__(
126128 The encoding version to use when writing data to storage.
127129 v2 is faster, but still experimental, so use with caution.
128130
129- recursive_normalizers: bool, default True
131+ recursive_normalizers: bool, default False
130132 Whether to recursively normalize nested data structures when writing sequence-like or dict-like data.
131133 The data structure can be nested or a mix of lists and dictionaries.
132134 Note: If the leaf nodes cannot be natively normalized and must be written using write_pickle, those leaf nodes
0 commit comments