Answers for "shuffle two vectors the same numpy"

0

apply same shuffle to two arrays numpy

def unison_shuffled_copies(a, b):
    assert len(a) == len(b)
    p = numpy.random.permutation(len(a))
    return a[p], b[p]
Posted by: Guest on December-01-2020

Code answers related to "shuffle two vectors the same numpy"

Python Answers by Framework

Browse Popular Code Answers by Language