Closed valentynbez closed 3 years ago
In the code, beta correlation mantel() in _visualizer.py opens an instance of plt.Figure() and doesn't close it, consuming memory. Added a line to close the instance and free up memory after saving.
mantel()
_visualizer.py
plt.Figure()
Going to let the tests run on this and then I'll merge :)
In the code, beta correlation
mantel()
in_visualizer.py
opens an instance ofplt.Figure()
and doesn't close it, consuming memory. Added a line to close the instance and free up memory after saving.