Skip to content

Commit

Permalink
use int64 minimum instead
Browse files Browse the repository at this point in the history
  • Loading branch information
rwedge committed Jan 21, 2025
1 parent 57e2a94 commit c7414ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_transformers.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

PRIMARY_SDTYPES = ['boolean', 'categorical', 'datetime', 'numerical']

INT32_MIN = np.iinfo(np.int32).min
INT64_MIN = np.iinfo(np.int64).min

# Additional arguments for transformers
TRANSFORMER_ARGS = {
Expand All @@ -26,7 +26,7 @@
'FloatFormatter': {'missing_value_generation': 'from_column'},
'GaussianNormalizer': {'missing_value_generation': 'from_column'},
'ClusterBasedNormalizer': {'missing_value_generation': 'from_column'},
'LogScaler': {'constant': INT32_MIN, 'missing_value_generation': 'from_column'},
'LogScaler': {'constant': INT64_MIN, 'missing_value_generation': 'from_column'},
}

# Mapping of rdt sdtype to dtype
Expand Down

0 comments on commit c7414ec

Please sign in to comment.