79597447

Date: 2025-04-29 00:58:26
Score: 3.5
Natty:
Report link

You could try forcing an empty array?

import numpy as np
import gc

# After clearing your data:
data.clear()
np.empty((0,)) # forces numpy malloc/free touch
gc.collect()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Prometheus