Skip to content

Commit

Permalink
reduce threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Nov 14, 2024
1 parent 1e578e4 commit f16d1e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/outlier_detection/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_compute_weight_threshold_memory():

# buffer to account for memory overhead needs to be small enough
# to ensure that the array was not copied
fractional_memory_buffer = 1.9
fractional_memory_buffer = 0.9
expected_mem = int(arr.nbytes*fractional_memory_buffer)
with MemoryThreshold(str(expected_mem) + " B"):
result = compute_weight_threshold(arr, 0.5)
Expand Down

0 comments on commit f16d1e9

Please sign in to comment.