Emr*_*dik 5 python image-processing autoencoder keras tensorflow
我正在尝试学习图像自动编码,但我无法使用输入和输出图像来训练模型
例如:输入图像文件夹:“.../Pictures/Input”
输出图像文件夹:“.../Pictures/Output”
#get input images from data_dir_input
ds_input = tf.keras.preprocessing.image_dataset_from_directory(
data_dir_input,
seed=123,
image_size=(img_height, img_width),
label_mode=None,
batch_size=batch_size)
#get output images from data_dir_output
ds_output = tf.keras.preprocessing.image_dataset_from_directory(
data_dir_output,
seed=123,
image_size=(img_height, img_width),
label_mode=None,
batch_size=batch_size)
# --------- model init etc --------------
# ...
model.fit(x=ds_input, y=ds_output, batch_size=32, epochs=50)
Run Code Online (Sandbox Code Playgroud)
但是我说这个错误:
`y` argument is not supported when using dataset as input
训练模型时如何使用自己的输入图像和输出图像?
您可以使用tf.data.Dataset更多的灵活性。据我所知,image_dataset_from_directory不支持除整数之外的任何自定义标签。
尝试这个:
import os
import tensorflow as tf
os.chdir(r'c:/users/user/Pictures')
from glob2 import glob
x_files = glob('inputs/*.jpg')
y_files = glob('targets/*.jpg')
files_ds = tf.data.Dataset.from_tensor_slices((x_files, y_files))
def process_img(file_path):
img = tf.io.read_file(file_path)
img = tf.image.decode_jpeg(img, channels=3)
img = tf.image.convert_image_dtype(img, tf.float32)
img = tf.image.resize(img, size=(28, 28))
return img
files_ds = files_ds.map(lambda x, y: (process_img(x), process_img(y))).batch(1)
original, target = next(iter(files_ds))
Run Code Online (Sandbox Code Playgroud)
<tf.Tensor: shape=(1, 28, 28, 3), dtype=float32, numpy=
array([[[[0.357423 , 0.3325731 , 0.20412168],
[0.36274514, 0.21940777, 0.17623049],
[0.34821934, 0.13921566, 0.06858743],
...,
[0.25486213, 0.27446997, 0.2520612 ],
[0.04925931, 0.26666668, 0.07619007],
[0.48167226, 0.5287311 , 0.520888 ]]]
Run Code Online (Sandbox Code Playgroud)
那么您就不需要将 an 传递y给fit()呼叫。您将能够这样使用它:
model.fit(files_ds, epochs=5)
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4982 次 |
| 最近记录: |