gpt4 book ai didi

python - 具有图像数据和预提取特征的 CNN 模型

转载 作者:行者123 更新时间:2023-11-30 09:47:59 24 4
gpt4 key购买 nike

我正在尝试实现一个CNN模型来将一些图像分类到相应的类别。图像尺寸为 64x64x3。我的数据集包含 25,000 张图像以及一个 CSV 文件,其中包含 14 个预先提取的特征,例如颜色、长度等。

我想构建一个 CNN 模型,利用图像数据和特征进行训练和预测。如何使用 KerasPython 中实现这样的模型?

最佳答案

我首先假设您可以毫无问题地导入数据,并且您已经将 x 数据分为图像和特征,并且将 y 数据作为每个图像的标签。

您可以使用 keras 功能 api 让神经网络接受多个输入。

from keras.models import Model
from keras.layers import Conv2D, Dense, Input, Embedding, multiply, Reshape, concatenate

img = Input(shape=(64, 64, 3))
features = Input(shape=(14,))
embedded = Embedding(input_dim=14, output_dim=60*32)(features)
embedded = Reshape(target_shape=(14, 60,32))(embedded)

encoded = Conv2D(32, (3, 3), activation='relu')(img)
encoded = Conv2D(32, (3, 3), activation='relu')(encoded)

x = concatenate([embedded, encoded], axis=1)
x = Dense(64, activation='relu')(x)
x = Dense(64, activation='relu')(x)
main_output = Dense(1, activation='sigmoid', name='main_output')(x)

model = Model([img, features], [main_output])

关于python - 具有图像数据和预提取特征的 CNN 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49833313/

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