gpt4 book ai didi

python - 如何在 Tensorflow Keras 中标准化我的图像数据

转载 作者:行者123 更新时间:2023-12-04 09:40:00 37 4
gpt4 key购买 nike

如前所述,我正在尝试在训练我的模型之前规范化我的数据集。我之前使用 tf.keras.preprocessing.image.ImageDataGenerator 来执行此操作。

        train_data = tf.cast(train_data, tf.float32)
train_gen = ImageDataGenerator(
featurewise_center=True,
featurewise_std_normalization=True
)
train_gen.fit(train_data)
train_generator = train_gen.flow(train_data, train_labels,
batch_size=batch_size,
shuffle=True)
model.fit(train_generator, epochs=base_epochs)

但是,我不得不放弃它,因为我使用自定义层实现了一个复杂的损失函数。因此,数据和标签需要作为输入分别发送到模型。 Tensorflow Keras 是否提供了任何其他功能来规范化我的样本?

最佳答案

    def standardize(image_data):
image_data -= np.mean(image_data, axis=0)
image_data /= np.std(image_data, axis=0)
return image_data

这是解决问题的简单方法。自己预处理数据。

关于python - 如何在 Tensorflow Keras 中标准化我的图像数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62376835/

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