Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 4.2 KB

File metadata and controls

41 lines (25 loc) · 4.2 KB
graph LR
    Keras_Preprocessing_Layers["Keras Preprocessing Layers"]
    Keras_Data_Utilities["Keras Data Utilities"]
    Keras_Data_Utilities -- "provides data to" --> Keras_Preprocessing_Layers
Loading

CodeBoardingDemoContact

Details

The Keras data processing subsystem is designed to efficiently handle data preparation for machine learning models. It comprises two primary components: Keras Data Utilities and Keras Preprocessing Layers. The Keras Data Utilities component is responsible for general-purpose data management, including loading various data formats from disk (e.g., images, audio) and performing file system operations. This component acts as the initial data provider, preparing raw data for subsequent processing. The Keras Preprocessing Layers component then takes this prepared data and applies in-graph transformations and augmentations. These layers are designed to be integrated directly into Keras models, enabling end-to-end differentiable pipelines and streamlined deployment by incorporating data preprocessing as part of the model's computational graph. This clear separation of concerns ensures that data loading and initial preparation are handled distinctly from the in-model data transformations, leading to a modular and efficient data pipeline.

Keras Preprocessing Layers

This component provides a collection of Keras layers designed for in-graph data preprocessing and augmentation. These layers can be directly integrated into Keras models, allowing for efficient and scalable data transformations as part of the model's computation graph. This is crucial for building end-to-end differentiable models and for streamlined deployment.

Related Classes/Methods:

Keras Data Utilities

This component offers a suite of general-purpose utilities for managing, loading, and preparing various data formats, including file system operations and specialized dataset creation helpers. It supports common data-related tasks outside the direct model graph, such as loading image or audio datasets from disk.

Related Classes/Methods: