gpt4 book ai didi

python - 如何将图像文件数据集加载到 TensorFlow Jupyter Notebook

转载 作者:行者123 更新时间:2023-12-01 00:57:30 27 4
gpt4 key购买 nike

我正在尝试创建一个模型来对一些植物进行分类,这样我就可以学习如何使用 TensorFlow。问题是每个 good example我可以用作引用的是加载 .csv 数据集,并且我想加载 .jpeg 数据集(可以是 .png.jpg 以及)。

这些示例甚至使用内置数据集,例如:

from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)

我的数据集组织在包含花朵标签的文件夹中,里面有按数字组织的图像。

enter image description here

enter image description here

最佳答案

假设你的文件夹结构如下:

├── testfiles
| ├── BougainvilleaGlabra
| | ├── BougainvilleaGlabra_001.jpeg
| | ├── *.jpeg
| ├── HandroanthusChrysotrichus
| | ├── HandroanthusChrysotrichus_001.jpeg
| | ├── *.jpeg
| ├── SpathodeaVenusta
| | ├── SpathodeaVenusta_001.jpeg
| | ├── *.jpeg
| ├──TibouchinaMutabilis
| | ├── TibouchinaMutabilis_001.jpeg
| | ├── *.jpeg
├── test.py

首先您需要获取所有图像路径。

import glob,os

path = 'testfiles/'
files = [f for f in glob.glob(path + "*/*.jpeg", recursive=True)]
print(files)

['testfiles/HandroanthusChrysotrichus/HandroanthusChrysotrichus_002.jpeg', 'testfiles/HandroanthusChrysotrichus/HandroanthusChrysotrichus_001.jpeg', ...]

然后你需要将每个类编码为数字。

label_map = {'BougainvilleaGlabra':0,
'HandroanthusChrysotrichus':1,
'SpathodeaVenusta':2,
'TibouchinaMutabilis':3,}
label = [label_map[os.path.basename(file).split('_')[0]] for file in files]
print(label)

[1, 1, 1, 0, 0, 0, 2, 2, 2, 3, 3, 3]

然后您可以使用tf.data.Dataset。您需要一个函数来读取图像并将它们调整为相同的形状。

import tensorflow as tf
def read_image(filename,label):
image_string = tf.read_file(filename)
image_decoded = tf.image.decode_jpeg(image_string)
image_resized = tf.image.resize_images(image_decoded, [28, 28])
return image_resized,label

dataset = tf.data.Dataset.from_tensor_slices((files,label))
# you can use batch() to set batch_size
dataset = dataset.map(read_image).shuffle(1000).batch(2)
print(dataset.output_shapes)
print(dataset.output_types)

(TensorShape([Dimension(None), Dimension(28), Dimension(28), Dimension(None)]), TensorShape([Dimension(None)]))
(tf.float32, tf.int32)

最后定义迭代器来获取批量数据。

iterator = dataset.make_initializable_iterator()
next_element = iterator.get_next()

with tf.Session() as sess:
for _ in range(2):
sess.run(iterator.initializer)
batch_image,batch_label = sess.run(next_element)
print(batch_image.shape)
print(batch_label.shape)

(2, 28, 28, 4)
(2,)
(2, 28, 28, 4)
(2,)

关于python - 如何将图像文件数据集加载到 TensorFlow Jupyter Notebook,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56130320/

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