How to convert one-hot encodings into integers?

后端 未结 7 1478
夕颜
夕颜 2021-01-07 16:22

I have a numpy array data set with shape (100,10). Each row is a one-hot encoding. I want to transfer it into a nd-array with shape (100,) such that I transferred each vecto

7条回答
  •  -上瘾入骨i
    2021-01-07 17:21

    As pointed out by Franck Dernoncourt, since a one hot encoding only has a single 1 and the rest are zeros, you can use argmax for this particular example. In general, if you want to find a value in a numpy array, you'll probabaly want to consult numpy.where. Also, this stack exchange question:

    Is there a NumPy function to return the first index of something in an array?

    Since a one-hot vector is a vector with all 0s and a single 1, you can do something like this:

    >>> import numpy as np
    >>> a = np.array([[0,1,0,0],[1,0,0,0],[0,0,0,1]])
    >>> [np.where(r==1)[0][0] for r in a]
    [1, 0, 3]
    

    This just builds a list of the index which is 1 for each row. The [0][0] indexing is just to ditch the structure (a tuple with an array) returned by np.where which is more than you asked for.

    For any particular row, you just want to index into a. For example in the zeroth row the 1 is found in index 1.

    >>> np.where(a[0]==1)[0][0]
    1
    

提交回复
热议问题