I need to find unique rows in a numpy.array.
numpy.array
For example:
>>> a # I have array([[1, 1, 1, 0, 0, 0], [0, 1, 1, 1, 0, 0],
Here is another variation for @Greg pythonic answer
np.vstack(set(map(tuple, a)))