Oyibo
Oyibo
@sklam thank you for taking the time to investigate that issue.
@seberg would you consider including other combinatorial indexing functions as well? Some options would be: - permutations - permutations_with_replacement - combinations - combinations_with_replacement - cartesian_product - ... @timhoffm, your feature...
@seberg , is it possible that using `itertools.permutations` for large sets with n>10 causes a bottleneck due to the conversion of generated tuples into a numpy array? The following code...
Hello @timhoffm, itertools is part of the standard library. The default way to use NumPy to get permutations is by converting generated tuples computed by itertools into a NumPy array...
Hello @ngoldbaum, Would a NumPy solution be a viable option, too? There are several fast and pretty efficient algorithms available. While a low-level implementation may be faster and more memory...