The GUDHI library is a generic open source C++ library, with a Python interface, for Topological Data Analysis (TDA) and Higher Dimensional Geometry Understanding.
reader_utils, subsampling, etc return (and take) lists of lists (that's what cython automatically does with vectors of vectors). It would be better if they returned a numpy array (preferably directly, not by building a list first and then converting it to numpy array).
reader_utils, subsampling, etc return (and take) lists of lists (that's what cython automatically does with vectors of vectors). It would be better if they returned a numpy array (preferably directly, not by building a list first and then converting it to numpy array).