gpt4 book ai didi

python - 有没有一种方法可以让我们在不使用热编码器的情况下训练 RNN?

转载 作者:行者123 更新时间:2023-11-30 08:56:19 25 4
gpt4 key购买 nike

我正在尝试为我的日志分析项目开发一个顺序 RNN。

输入是一个日志序列,例如 [1,2,3,4,5,6,1,5,2,7,8,2,1]

目前我正在使用 keras 库中的 to_categorical 函数,它将序列转换为 one-hot 编码。

def to_categorical(y, num_classes=None, dtype='float32'):
"""Converts a class vector (integers) to binary class matrix.

E.g. for use with categorical_crossentropy.

# Arguments
y: class vector to be converted into a matrix
(integers from 0 to num_classes).
num_classes: total number of classes.
dtype: The data type expected by the input, as a string
(`float32`, `float64`, `int32`...)

# Returns
A binary matrix representation of the input. The classes axis
is placed last.

# Example

```python
# Consider an array of 5 labels out of a set of 3 classes {0, 1, 2}:
> labels
array([0, 2, 1, 2, 0])
# `to_categorical` converts this into a matrix with as many
# columns as there are classes. The number of rows
# stays the same.
> to_categorical(labels)
array([[ 1., 0., 0.],
[ 0., 0., 1.],
[ 0., 1., 0.],
[ 0., 0., 1.],
[ 1., 0., 0.]], dtype=float32)
```
"""

y = np.array(y, dtype='int')
input_shape = y.shape
if input_shape and input_shape[-1] == 1 and len(input_shape) > 1:
input_shape = tuple(input_shape[:-1])
y = y.ravel()
if not num_classes:
num_classes = np.max(y) + 1
n = y.shape[0]
categorical = np.zeros((n, num_classes), dtype=dtype)
categorical[np.arange(n), y] = 1
output_shape = input_shape + (num_classes,)
categorical = np.reshape(categorical, output_shape)
return categorical

我面临的问题是可能有一些日志可能不属于训练数据,比如[9,10,11]

如果我有 2000 个日志键和 275 个唯一日志的序列。

总会有看不见的日志,但如果我想保存这个模型并在新数据上重用它,它可能无法将其转换为相同的分类格式,因为最初我的日志中只有 275 个唯一的日志类RNN 但现在我有 275+ 3 个新类。

我们如何解决这个问题?

最佳答案

关于@Dainel关于类一致性的回答,您可以用np.nan替换训练序列中没有出现的任何值,并使用pd.get_dummies,如下所示.

train_seq = np.array([1,2,3,4,5])
test_seq = np.array([1,2,3,4,5,6,7,8,9,10], dtype=np.float32)

test_seq[~np.isin(test_seq, train_seq)] = np.nan

df = pd.get_dummies(test_seq, dummy_na=True)
print(df)

它为看不见的数据生成一个单独的类。

   1.0  2.0  3.0  4.0  5.0  NaN
0 1 0 0 0 0 0
1 0 1 0 0 0 0
2 0 0 1 0 0 0
3 0 0 0 1 0 0
4 0 0 0 0 1 0
5 0 0 0 0 0 1
6 0 0 0 0 0 1
7 0 0 0 0 0 1
8 0 0 0 0 0 1
9 0 0 0 0 0 1

关于python - 有没有一种方法可以让我们在不使用热编码器的情况下训练 RNN?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59287602/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com