Как совместить перекрестную проверку с конвейером в tensorflow?
#python #image-processing #tensorflow2.0 Вопрос: Я сделал трубопровод в TensorFlow, что-то вроде: from glob import glob import random IMG_SIZE=224 def make_dataset(path,batch_size): def parse_image(filename): image= tf.io.read_file(filename) image=tf.image.decode_jpeg(image,channels=3) image=tf.image.resize(image, [IMG_SIZE,IMG_SIZE]) image=tf.cast(image, tf.float32) /…