BatchDataSet:获取img数组和标签

Kin*_*ing 6 python deep-learning keras tensorflow tensorflow-datasets

这是我之前创建的用于适应模型的批量数据集:

train_ds = tf.keras.preprocessing.image_dataset_from_directory(
    train_path,
    label_mode = 'categorical', #it is used for multiclass classification. It is one hot encoded labels for each class
    validation_split = 0.2,     #percentage of dataset to be considered for validation
    subset = "training",        #this subset is used for training
    seed = 1337,                # seed is set so that same results are reproduced
    image_size = img_size,      # shape of input images
    batch_size = batch_size,    # This should match with model batch size
)




valid_ds = tf.keras.preprocessing.image_dataset_from_directory(
    train_path,
    label_mode ='categorical',
    validation_split = 0.2,
    subset = "validation",      #this subset is used for validation
    seed = 1337,
    image_size = img_size,
    batch_size = batch_size,
)
Run Code Online (Sandbox Code Playgroud)

如果我运行 for 循环,我就可以访问 img 数组和标签:

for images, labels in train_ds:
    print(labels)
Run Code Online (Sandbox Code Playgroud)

但如果我尝试像这样访问它们:

尝试1)

images, labels = train_ds
Run Code Online (Sandbox Code Playgroud)

我收到以下值错误:ValueError: too many values to unpack (expected 2)

尝试 2:

如果我尝试像这样解压它:

images = train_ds[:,0] # get the 0th column of all rows 
labels = train_ds[:,1] # get the 1st column of all rows 
Run Code Online (Sandbox Code Playgroud)

我收到以下错误:TypeError: 'BatchDataset' object is not subscriptable

有没有办法让我提取标签和图像而不经过 for 循环?

Alo*_*her 7

只需取消批处理数据集并将数据转换为列表即可:

import tensorflow as tf
import pathlib

dataset_url = "https://storage.googleapis.com/download.tensorflow.org/example_images/flower_photos.tgz" 
data_dir = tf.keras.utils.get_file('flower_photos', origin=dataset_url, untar=True)
data_dir = pathlib.Path(data_dir) 
batch_size = 32 
train_ds = tf.keras.utils.image_dataset_from_directory( 
     data_dir, validation_split=0.2, subset="training", 
     seed=123, batch_size=batch_size) 

train_ds = train_ds.unbatch()
images = list(train_ds.map(lambda x, y: x))
labels = list(train_ds.map(lambda x, y: y))

print(len(labels))
print(len(images))
Run Code Online (Sandbox Code Playgroud)
Found 3670 files belonging to 5 classes.
Using 2936 files for training. 
2936 
2936
Run Code Online (Sandbox Code Playgroud)