gpt4 book ai didi

python - 如何在 Keras 中获取张量值?

转载 作者:行者123 更新时间:2023-11-28 21:36:45 25 4
gpt4 key购买 nike

我想比较 2 个图像。

我采用的方法是对它们进行编码。

然后计算两个编码向量之间的角度以进行相似性度量。

下面的代码用于使用 CNN 和 Keras 对图像进行编码和解码。

但是,我需要获取张量编码的值。

如何实现?

非常感谢。

from keras.layers import Input, Dense, Conv2D, MaxPooling2D, UpSampling2D
from keras.models import Model
from keras import backend as K

input_img = Input(shape=(28, 28, 1))
x = Conv2D(16, (3, 3), activation='relu', padding='same')(input_img)
x = MaxPooling2D((2, 2), padding='same')(x)
x = Conv2D(8, (3, 3), activation='relu', padding='same')(x)
x = MaxPooling2D((2, 2), padding='same')(x)
x = Conv2D(8, (3, 3), activation='relu', padding='same')(x)
encoded = MaxPooling2D((2, 2), padding='same')(x)
#----------------------------------------------------------------#
# How to get the values of the tensor "encoded"? #
#----------------------------------------------------------------#
x = Conv2D(8, (3, 3), activation='relu', padding='same')(encoded)
x = UpSampling2D((2, 2))(x)
x = Conv2D(8, (3, 3), activation='relu', padding='same')(x)
x = UpSampling2D((2, 2))(x)
x = Conv2D(16, (3, 3), activation='relu')(x)
x = UpSampling2D((2, 2))(x)
decoded = Conv2D(1, (3, 3), activation='sigmoid', padding='same')(x)

autoencoder = Model(input_img, decoded)
autoencoder.compile(optimizer='adadelta', loss='binary_crossentropy')

.....

autoencoder.fit(x_train, x_train,
epochs=50,
batch_size=128,
shuffle=True,
validation_data=(x_test, x_test),
callbacks=[TensorBoard(log_dir='/tmp/autoencoder')])

最佳答案

为了获得中间输出,您需要创建一个单独的模型,其中包含截至该点的计算图。对于您的情况,您可以:

encoder = Model(input_img, encoded)

使用autoencoder训练完成后,您可以encoder.predict返回中间编码结果。您还可以像保存任何其他模型一样单独保存模型,而不必每次都进行训练。简而言之,模型是构建计算图的层的容器。

关于python - 如何在 Keras 中获取张量值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50596380/

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