gpt4 book ai didi

python - NumPy 相当于 Keras 函数 utils.to_categorical

转载 作者:太空宇宙 更新时间:2023-11-03 13:29:27 25 4
gpt4 key购买 nike

我有一个使用 Keras 进行机器学习的 Python 脚本。我正在构建 X 和 Y,它们分别是特征和标签。

标签是这样构建的:

def main=():

depth = 10
nclass = 101
skip = True
output = "True"
videos = 'sensor'
img_rows, img_cols, frames = 8, 8, depth
channel = 1
fname_npz = 'dataset_{}_{}_{}.npz'.format(
nclass, depth, skip)

vid3d = videoto3d.Videoto3D(img_rows, img_cols, frames)
nb_classes = nclass

x, y = loaddata(videos, vid3d, nclass,
output, skip)

X = x.reshape((x.shape[0], img_rows, img_cols, frames, channel))
Y = np_utils.to_categorical(y, nb_classes) # This needs to be changed

Keras中使用的函数“to_categorical”解释如下:

to_categorical

keras.utils.to_categorical(y, num_classes=None)

Converts a class vector (integers) to binary class matrix.

现在我正在使用 NumPy。能否让我知道如何构建同一行代码才能工作?换句话说,我正在寻找与 NumPy 中的“to_categorical”函数等效的函数。

最佳答案

这是一种简单的方法:

np.eye(nb_classes)[y]

关于python - NumPy 相当于 Keras 函数 utils.to_categorical,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49684379/

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