305

假设我有一个 1d numpy 数组

a = array([1,0,3])

我想将其编码为 2D one-hot 数组

b = array([[0,1,0,0], [1,0,0,0], [0,0,0,1]])

有没有快速的方法来做到这一点?比循环a设置 的元素更快b,也就是说。

4

22 回答 22

481

您的数组a定义了输出数组中非零元素的列。您还需要定义行,然后使用精美的索引:

>>> a = np.array([1, 0, 3])
>>> b = np.zeros((a.size, a.max()+1))
>>> b[np.arange(a.size),a] = 1
>>> b
array([[ 0.,  1.,  0.,  0.],
       [ 1.,  0.,  0.,  0.],
       [ 0.,  0.,  0.,  1.]])
于 2015-04-23T18:30:15.263 回答
234
>>> values = [1, 0, 3]
>>> n_values = np.max(values) + 1
>>> np.eye(n_values)[values]
array([[ 0.,  1.,  0.,  0.],
       [ 1.,  0.,  0.,  0.],
       [ 0.,  0.,  0.,  1.]])
于 2016-05-19T12:35:50.960 回答
49

如果您使用的是 keras,则有一个内置实用程序:

from keras.utils.np_utils import to_categorical   

categorical_labels = to_categorical(int_labels, num_classes=3)

它与@YXD 的答案几乎相同(参见源代码)。

于 2017-11-27T11:13:21.520 回答
41

以下是我觉得有用的:

def one_hot(a, num_classes):
  return np.squeeze(np.eye(num_classes)[a.reshape(-1)])

这里num_classes代表您拥有的课程数量。因此,如果您有a形状为(10000,)的向量,此函数会将其转换为(10000,C)。请注意,它a是零索引的,即one_hot(np.array([0, 1]), 2)会给出[[1, 0], [0, 1]].

我相信这正是你想要的。

PS:来源是Sequence模型——deeplearning.ai

于 2018-03-11T07:41:09.030 回答
37

您还可以使用numpy 的眼睛功能:

numpy.eye(number of classes)[vector containing the labels]

于 2018-04-12T07:14:13.303 回答
30

您可以使用 sklearn.preprocessing.LabelBinarizer

例子:

import sklearn.preprocessing
a = [1,0,3]
label_binarizer = sklearn.preprocessing.LabelBinarizer()
label_binarizer.fit(range(max(a)+1))
b = label_binarizer.transform(a)
print('{0}'.format(b))

输出:

[[0 1 0 0]
 [1 0 0 0]
 [0 0 0 1]]

除其他外,您可以进行初始化sklearn.preprocessing.LabelBinarizer()以使 的输出transform是稀疏的。

于 2017-02-16T02:15:32.190 回答
8

对于 1-热编码

   one_hot_encode=pandas.get_dummies(array)

例如

享受编码

于 2020-04-10T23:27:13.820 回答
6

您可以使用以下代码转换为 one-hot 向量:

让 x 是具有单列的普通类向量,其类别为 0 到某个数字:

import numpy as np
np.eye(x.max()+1)[x]

如果 0 不是一个类;然后删除+1。

于 2019-05-26T15:29:27.053 回答
5

这是一个将一维向量转换为二维单热数组的函数。

#!/usr/bin/env python
import numpy as np

def convertToOneHot(vector, num_classes=None):
    """
    Converts an input 1-D vector of integers into an output
    2-D array of one-hot vectors, where an i'th input value
    of j will set a '1' in the i'th row, j'th column of the
    output array.

    Example:
        v = np.array((1, 0, 4))
        one_hot_v = convertToOneHot(v)
        print one_hot_v

        [[0 1 0 0 0]
         [1 0 0 0 0]
         [0 0 0 0 1]]
    """

    assert isinstance(vector, np.ndarray)
    assert len(vector) > 0

    if num_classes is None:
        num_classes = np.max(vector)+1
    else:
        assert num_classes > 0
        assert num_classes >= np.max(vector)

    result = np.zeros(shape=(len(vector), num_classes))
    result[np.arange(len(vector)), vector] = 1
    return result.astype(int)

下面是一些示例用法:

>>> a = np.array([1, 0, 3])

>>> convertToOneHot(a)
array([[0, 1, 0, 0],
       [1, 0, 0, 0],
       [0, 0, 0, 1]])

>>> convertToOneHot(a, num_classes=10)
array([[0, 1, 0, 0, 0, 0, 0, 0, 0, 0],
       [1, 0, 0, 0, 0, 0, 0, 0, 0, 0],
       [0, 0, 0, 1, 0, 0, 0, 0, 0, 0]])
于 2016-09-14T00:02:01.203 回答
2

我认为简短的回答是否定的。对于n尺寸更通用的情况,我想出了这个:

# For 2-dimensional data, 4 values
a = np.array([[0, 1, 2], [3, 2, 1]])
z = np.zeros(list(a.shape) + [4])
z[list(np.indices(z.shape[:-1])) + [a]] = 1

我想知道是否有更好的解决方案——我不喜欢我必须在最后两行创建这些列表。无论如何,我做了一些测量,timeit似乎numpy基于 - 的(indices/ arange)和迭代版本的性能大致相同。

于 2016-10-11T22:26:38.663 回答
2

只是为了详细说明K3---rnc的出色答案,这里有一个更通用的版本:

def onehottify(x, n=None, dtype=float):
    """1-hot encode x with the max value n (computed from data if n is None)."""
    x = np.asarray(x)
    n = np.max(x) + 1 if n is None else n
    return np.eye(n, dtype=dtype)[x]

此外,这里是这个方法的一个快速和肮脏的基准测试和一个来自YXD当前接受的答案的方法(略有变化,因此它们提供相同的 API,除了后者仅适用于 1D ndarrays):

def onehottify_only_1d(x, n=None, dtype=float):
    x = np.asarray(x)
    n = np.max(x) + 1 if n is None else n
    b = np.zeros((len(x), n), dtype=dtype)
    b[np.arange(len(x)), x] = 1
    return b

后一种方法要快约 35%(MacBook Pro 13 2015),但前者更通用:

>>> import numpy as np
>>> np.random.seed(42)
>>> a = np.random.randint(0, 9, size=(10_000,))
>>> a
array([6, 3, 7, ..., 5, 8, 6])
>>> %timeit onehottify(a, 10)
188 µs ± 5.03 µs per loop (mean ± std. dev. of 7 runs, 10000 loops each)
>>> %timeit onehottify_only_1d(a, 10)
139 µs ± 2.78 µs per loop (mean ± std. dev. of 7 runs, 10000 loops each)
于 2018-01-17T14:08:48.830 回答
2
def one_hot(n, class_num, col_wise=True):
  a = np.eye(class_num)[n.reshape(-1)]
  return a.T if col_wise else a

# Column for different hot
print(one_hot(np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 9, 9, 9, 8, 7]), 10))
# Row for different hot
print(one_hot(np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 9, 9, 9, 8, 7]), 10, col_wise=False))
于 2021-05-09T20:53:24.223 回答
1

我最近遇到了一个相同类型的问题,并找到了上述解决方案,结果证明只有当你的数字在某个阵型中时才会令人满意。例如,如果您想对以下列表进行一次性编码:

all_good_list = [0,1,2,3,4]

继续,上面已经提到了发布的解决方案。但是,如果考虑这些数据会怎样:

problematic_list = [0,23,12,89,10]

如果您使用上述方法执行此操作,您最终可能会得到 90 个 one-hot 列。这是因为所有答案都包含类似n = np.max(a)+1. 我找到了一个对我有用的更通用的解决方案,并想与您分享:

import numpy as np
import sklearn
sklb = sklearn.preprocessing.LabelBinarizer()
a = np.asarray([1,2,44,3,2])
n = np.unique(a)
sklb.fit(n)
b = sklb.transform(a)

我希望有人对上述解决方案遇到相同的限制,这可能会派上用场

于 2018-01-25T13:10:05.030 回答
1

这种类型的编码通常是 numpy 数组的一部分。如果您使用这样的 numpy 数组:

a = np.array([1,0,3])

那么有一种非常简单的方法可以将其转换为 1-hot 编码

out = (np.arange(4) == a[:,None]).astype(np.float32)

就是这样。

于 2018-08-30T06:36:17.413 回答
1
  • p 将是一个二维数组。
  • 我们想知道哪一个值是连续最高的,把 1 放在那里,其他地方放 0。

干净简单的解决方案:

max_elements_i = np.expand_dims(np.argmax(p, axis=1), axis=1)
one_hot = np.zeros(p.shape)
np.put_along_axis(one_hot, max_elements_i, 1, axis=1)
于 2018-11-03T10:17:49.190 回答
0

这是我根据上面的答案和我自己的用例编写的示例函数:

def label_vector_to_one_hot_vector(vector, one_hot_size=10):
    """
    Use to convert a column vector to a 'one-hot' matrix

    Example:
        vector: [[2], [0], [1]]
        one_hot_size: 3
        returns:
            [[ 0.,  0.,  1.],
             [ 1.,  0.,  0.],
             [ 0.,  1.,  0.]]

    Parameters:
        vector (np.array): of size (n, 1) to be converted
        one_hot_size (int) optional: size of 'one-hot' row vector

    Returns:
        np.array size (vector.size, one_hot_size): converted to a 'one-hot' matrix
    """
    squeezed_vector = np.squeeze(vector, axis=-1)

    one_hot = np.zeros((squeezed_vector.size, one_hot_size))

    one_hot[np.arange(squeezed_vector.size), squeezed_vector] = 1

    return one_hot

label_vector_to_one_hot_vector(vector=[[2], [0], [1]], one_hot_size=3)
于 2018-01-06T18:12:30.870 回答
0

我正在添加一个简单的函数来完成,只使用 numpy 运算符:

   def probs_to_onehot(output_probabilities):
        argmax_indices_array = np.argmax(output_probabilities, axis=1)
        onehot_output_array = np.eye(np.unique(argmax_indices_array).shape[0])[argmax_indices_array.reshape(-1)]
        return onehot_output_array

它将概率矩阵作为输入:例如:

[[0.03038822 0.65810204 0.16549407 0.3797123] ... [0.02771272 0.2760752 0.3280924 0.33458805]]

它会回来

[[0 1 0 0] ... [0 0 0 1]]

于 2018-06-05T10:04:54.480 回答
0

这是一个与维度无关的独立解决方案。

这会将任何 N 维arr非负整数数组转换为单热 N+1 维数组one_hotone_hot[i_1,...,i_N,c] = 1其中arr[i_1,...,i_N] = c。您可以通过以下方式恢复输入np.argmax(one_hot, -1)

def expand_integer_grid(arr, n_classes):
    """

    :param arr: N dim array of size i_1, ..., i_N
    :param n_classes: C
    :returns: one-hot N+1 dim array of size i_1, ..., i_N, C
    :rtype: ndarray

    """
    one_hot = np.zeros(arr.shape + (n_classes,))
    axes_ranges = [range(arr.shape[i]) for i in range(arr.ndim)]
    flat_grids = [_.ravel() for _ in np.meshgrid(*axes_ranges, indexing='ij')]
    one_hot[flat_grids + [arr.ravel()]] = 1
    assert((one_hot.sum(-1) == 1).all())
    assert(np.allclose(np.argmax(one_hot, -1), arr))
    return one_hot
于 2018-07-30T01:04:32.550 回答
0

使用以下代码。它效果最好。

def one_hot_encode(x):
"""
    argument
        - x: a list of labels
    return
        - one hot encoding matrix (number of labels, number of class)
"""
encoded = np.zeros((len(x), 10))

for idx, val in enumerate(x):
    encoded[idx][val] = 1

return encoded

在这里找到它PS 你不需要进入链接。

于 2019-02-27T18:33:14.693 回答
0

我发现最简单的解决方案结合np.takenp.eye

def one_hot(x, depth: int):
  return np.take(np.eye(depth), x, axis=0)

适用于x任何形状。

于 2022-02-03T00:05:24.740 回答
-1

使用Neuraxle管道步骤:

  1. 设置您的示例
import numpy as np
a = np.array([1,0,3])
b = np.array([[0,1,0,0], [1,0,0,0], [0,0,0,1]])
  1. 进行实际转换
from neuraxle.steps.numpy import OneHotEncoder
encoder = OneHotEncoder(nb_columns=4)
b_pred = encoder.transform(a)
  1. 断言它有效
assert b_pred == b

文档链接:neuraxle.steps.numpy.OneHotEncoder

于 2019-12-10T07:39:15.083 回答
-1

如果使用tensorflow,则有one_hot()

import tensorflow as tf
import numpy as np

a = np.array([1, 0, 3])
depth = 4
b = tf.one_hot(a, depth)
# <tf.Tensor: shape=(3, 3), dtype=float32, numpy=
# array([[0., 1., 0.],
#        [1., 0., 0.],
#        [0., 0., 0.]], dtype=float32)>
于 2020-10-20T11:11:19.547 回答