英文: TypeError: tuple indices must be integers or slices, not list - While loading a model Keras 问题 在...
Retraining time series (Keras) with just the newly arrived data (not fresh training from the scratch)
英文: Retraining time series (Keras) with just the newly arrived data (not fresh training from the scr...
在Keras中的图像到图像映射
英文: Image to image mapping in keras 问题 我是新手对机器学习不太了解。我有一个2D数组(图像),需要映射到另一个2D数组(图像)。所有示例都使用具有输出为1的Den...
`tf.multiply`和`*`之间的区别是什么?
英文: what is the difference between `tf.multiply` and `*`? 问题 在代码中,可以用 * 替换 tf.multiply 吗?可以用 1/x 替换 ...
如何将输入传递给Keras中的2D卷积层?
英文: How to pass input to 2D Conv in Keras? 问题 我已使用librosa将声音转换为频谱图。频谱图的形状是(257, 356),我已将其重塑为(257, 35...
ValueError: Error when checking target: expected activation_9 to have shape (74, 6) but got array with shape (75, 6)
英文: ValueError: Error when checking target: expected activation_9 to have shape (74, 6) but got arra...
keras.losses.sparse_categorical_crossentropy的实现是怎样的?
英文: What does the implementation of keras.losses.sparse_categorical_crossentropy look like? 问题 我发现tf...
如何正确创建多输入神经网络
英文: How to correctly create a multi input neural network 问题 我正在构建一个神经网络,其输入是两张汽车图片,并且分类它们是否是相同的制造商和型...
使用K.tile()复制张量。
英文: Copy tensor using K.tile() 问题 我有一个张量 (None, 196),在重塑之后,它变成了 (None, 14, 14)。 现在,我想要复制它到通道轴,使形状变成 ...
13