tf.keras.preprocessing.image_dataset_from_directory
Stay organized with collections
Save and categorize content based on your preferences.
Generates a tf.data.Dataset
from image files in a directory.
tf.keras.preprocessing.image_dataset_from_directory(
directory, labels='inferred', label_mode='int', class_names=None,
color_mode='rgb', batch_size=32, image_size=(256, 256), shuffle=True, seed=None,
validation_split=None, subset=None, interpolation='bilinear', follow_links=False
)
If your directory structure is:
main_directory/
...class_a/
......a_image_1.jpg
......a_image_2.jpg
...class_b/
......b_image_1.jpg
......b_image_2.jpg
Then calling image_dataset_from_directory(main_directory, labels='inferred')
will return a tf.data.Dataset
that yields batches of images from
the subdirectories class_a
and class_b
, together with labels
0 and 1 (0 corresponding to class_a
and 1 corresponding to class_b
).
Supported image formats: jpeg, png, bmp, gif.
Animated gifs are truncated to the first frame.
Arguments |
directory
|
Directory where the data is located.
If labels is "inferred", it should contain
subdirectories, each containing images for a class.
Otherwise, the directory structure is ignored.
|
labels
|
Either "inferred"
(labels are generated from the directory structure),
or a list/tuple of integer labels of the same size as the number of
image files found in the directory. Labels should be sorted according
to the alphanumeric order of the image file paths
(obtained via os.walk(directory) in Python).
|
label_mode
|
- 'int': means that the labels are encoded as integers
(e.g. for
sparse_categorical_crossentropy loss).
- 'categorical' means that the labels are
encoded as a categorical vector
(e.g. for
categorical_crossentropy loss).
- 'binary' means that the labels (there can be only 2)
are encoded as
float32 scalars with values 0 or 1
(e.g. for binary_crossentropy ).
- None (no labels).
|
class_names
|
Only valid if "labels" is "inferred". This is the explict
list of class names (must match names of subdirectories). Used
to control the order of the classes
(otherwise alphanumerical order is used).
|
color_mode
|
One of "grayscale", "rgb", "rgba". Default: "rgb".
Whether the images will be converted to
have 1, 3, or 4 channels.
|
batch_size
|
Size of the batches of data. Default: 32.
|
image_size
|
Size to resize images to after they are read from disk.
Defaults to (256, 256) .
Since the pipeline processes batches of images that must all have
the same size, this must be provided.
|
shuffle
|
Whether to shuffle the data. Default: True.
If set to False, sorts the data in alphanumeric order.
|
seed
|
Optional random seed for shuffling and transformations.
|
validation_split
|
Optional float between 0 and 1,
fraction of data to reserve for validation.
|
subset
|
One of "training" or "validation".
Only used if validation_split is set.
|
interpolation
|
String, the interpolation method used when resizing images.
Defaults to bilinear . Supports bilinear , nearest , bicubic ,
area , lanczos3 , lanczos5 , gaussian , mitchellcubic .
|
follow_links
|
Whether to visits subdirectories pointed to by symlinks.
Defaults to False.
|
Returns |
A tf.data.Dataset object.
- If
label_mode is None, it yields float32 tensors of shape
(batch_size, image_size[0], image_size[1], num_channels) ,
encoding images (see below for rules regarding num_channels ).
- Otherwise, it yields a tuple
(images, labels) , where images
has shape (batch_size, image_size[0], image_size[1], num_channels) ,
and labels follows the format described below.
|
Rules regarding labels format:
- if
label_mode
is int
, the labels are an int32
tensor of shape
(batch_size,)
.
- if
label_mode
is binary
, the labels are a float32
tensor of
1s and 0s of shape (batch_size, 1)
.
- if
label_mode
is categorial
, the labels are a float32
tensor
of shape (batch_size, num_classes)
, representing a one-hot
encoding of the class index.
Rules regarding number of channels in the yielded images:
- if
color_mode
is grayscale
,
there's 1 channel in the image tensors.
- if
color_mode
is rgb
,
there are 3 channel in the image tensors.
- if
color_mode
is rgba
,
there are 4 channel in the image tensors.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[],null,["# tf.keras.preprocessing.image_dataset_from_directory\n\n\u003cbr /\u003e\n\n|-----------------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v2.3.0/tensorflow/python/keras/preprocessing/image_dataset.py#L34-L206) |\n\nGenerates a [`tf.data.Dataset`](../../../tf/data/Dataset) from image files in a directory. \n\n tf.keras.preprocessing.image_dataset_from_directory(\n directory, labels='inferred', label_mode='int', class_names=None,\n color_mode='rgb', batch_size=32, image_size=(256, 256), shuffle=True, seed=None,\n validation_split=None, subset=None, interpolation='bilinear', follow_links=False\n )\n\nIf your directory structure is: \n\n main_directory/\n ...class_a/\n ......a_image_1.jpg\n ......a_image_2.jpg\n ...class_b/\n ......b_image_1.jpg\n ......b_image_2.jpg\n\nThen calling `image_dataset_from_directory(main_directory, labels='inferred')`\nwill return a [`tf.data.Dataset`](../../../tf/data/Dataset) that yields batches of images from\nthe subdirectories `class_a` and `class_b`, together with labels\n0 and 1 (0 corresponding to `class_a` and 1 corresponding to `class_b`).\n\nSupported image formats: jpeg, png, bmp, gif.\nAnimated gifs are truncated to the first frame.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Arguments --------- ||\n|--------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `directory` | Directory where the data is located. If `labels` is \"inferred\", it should contain subdirectories, each containing images for a class. Otherwise, the directory structure is ignored. |\n| `labels` | Either \"inferred\" (labels are generated from the directory structure), or a list/tuple of integer labels of the same size as the number of image files found in the directory. Labels should be sorted according to the alphanumeric order of the image file paths (obtained via `os.walk(directory)` in Python). |\n| `label_mode` | \u003cbr /\u003e - 'int': means that the labels are encoded as integers (e.g. for `sparse_categorical_crossentropy` loss). - 'categorical' means that the labels are encoded as a categorical vector (e.g. for `categorical_crossentropy` loss). - 'binary' means that the labels (there can be only 2) are encoded as `float32` scalars with values 0 or 1 (e.g. for `binary_crossentropy`). - None (no labels). |\n| `class_names` | Only valid if \"labels\" is \"inferred\". This is the explict list of class names (must match names of subdirectories). Used to control the order of the classes (otherwise alphanumerical order is used). |\n| `color_mode` | One of \"grayscale\", \"rgb\", \"rgba\". Default: \"rgb\". Whether the images will be converted to have 1, 3, or 4 channels. |\n| `batch_size` | Size of the batches of data. Default: 32. |\n| `image_size` | Size to resize images to after they are read from disk. Defaults to `(256, 256)`. Since the pipeline processes batches of images that must all have the same size, this must be provided. |\n| `shuffle` | Whether to shuffle the data. Default: True. If set to False, sorts the data in alphanumeric order. |\n| `seed` | Optional random seed for shuffling and transformations. |\n| `validation_split` | Optional float between 0 and 1, fraction of data to reserve for validation. |\n| `subset` | One of \"training\" or \"validation\". Only used if `validation_split` is set. |\n| `interpolation` | String, the interpolation method used when resizing images. Defaults to `bilinear`. Supports `bilinear`, `nearest`, `bicubic`, `area`, `lanczos3`, `lanczos5`, `gaussian`, `mitchellcubic`. |\n| `follow_links` | Whether to visits subdirectories pointed to by symlinks. Defaults to False. |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|---|---|\n| A [`tf.data.Dataset`](../../../tf/data/Dataset) object. \u003cbr /\u003e - If `label_mode` is None, it yields `float32` tensors of shape `(batch_size, image_size[0], image_size[1], num_channels)`, encoding images (see below for rules regarding `num_channels`). - Otherwise, it yields a tuple `(images, labels)`, where `images` has shape `(batch_size, image_size[0], image_size[1], num_channels)`, and `labels` follows the format described below. ||\n\n\u003cbr /\u003e\n\nRules regarding labels format:\n\n- if `label_mode` is `int`, the labels are an `int32` tensor of shape `(batch_size,)`.\n- if `label_mode` is `binary`, the labels are a `float32` tensor of 1s and 0s of shape `(batch_size, 1)`.\n- if `label_mode` is `categorial`, the labels are a `float32` tensor of shape `(batch_size, num_classes)`, representing a one-hot encoding of the class index.\n\nRules regarding number of channels in the yielded images:\n\n- if `color_mode` is `grayscale`, there's 1 channel in the image tensors.\n- if `color_mode` is `rgb`, there are 3 channel in the image tensors.\n- if `color_mode` is `rgba`, there are 4 channel in the image tensors."]]