From 61d23b1b70067ced4d905b9a2d6b4d92f844a38e Mon Sep 17 00:00:00 2001 From: R-Palazzo Date: Mon, 28 Oct 2024 08:55:18 -0400 Subject: [PATCH] update default value to fix the dtype benchmarking --- sdv/data_processing/data_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdv/data_processing/data_processor.py b/sdv/data_processing/data_processor.py index 9b44ff90b..f3e0ef158 100644 --- a/sdv/data_processing/data_processor.py +++ b/sdv/data_processing/data_processor.py @@ -575,7 +575,7 @@ def _create_config(self, data, columns_created_by_constraints): if is_numeric: function_name = 'random_int' column_dtype = str(column_dtype).lower() - function_kwargs = {'min': 0, 'max': 999999999} + function_kwargs = {'min': 0, 'max': 9999999} for key in INTEGER_BOUNDS: if key in column_dtype: _, max_value = INTEGER_BOUNDS[key]