Skip to content

Commit

Permalink
Fix bug with test_pipeline_preprocessing_through_api_correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
aPovidlo committed Aug 15, 2024
1 parent 7a3946a commit 3134fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedot/preprocessing/preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ def reduce_mem_usage_np(arr, initial_types):
col = col.astype(init_type)
col_type = col.dtype.name

if col_type not in ['object']:
if col_type not in ['object', 'str384']:
c_min = col.max()
c_max = col.max()

Expand Down

0 comments on commit 3134fc6

Please sign in to comment.