Skip to content

Commit

Permalink
update default value to fix the dtype benchmarking
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Oct 28, 2024
1 parent 8282ad0 commit 635808f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdv/data_processing/data_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 635808f

Please sign in to comment.