@@ -35,7 +35,7 @@ With Keras preprocessing layers, you can build and export models that are truly
3535end-to-end: models that accept raw images or raw structured data as input;
3636models that handle feature normalization or feature value indexing on their own.
3737
38- ## Available preprocessing
38+ ## Available preprocessing layers
3939
4040### Text preprocessing
4141
@@ -44,17 +44,17 @@ models that handle feature normalization or feature value indexing on their own.
4444
4545### Numerical features preprocessing
4646
47- - ` layer_normalization() ` : performs feature-wise normalize of input features.
47+ - ` layer_normalization() ` : performs feature-wise normalization of input features.
4848- ` layer_discretization() ` : turns continuous numerical features
4949 into integer categorical features.
5050
5151### Categorical features preprocessing
5252
5353- ` layer_category_encoding() ` : turns integer categorical features
54- into one-hot, multi-hot, or count dense representations.
54+ into one-hot, multi-hot, or count-based, dense representations.
5555- ` layer_hashing() ` : performs categorical feature hashing, also known as
5656 the "hashing trick".
57- - ` layer_string_lookup() ` : turns string categorical values an encoded
57+ - ` layer_string_lookup() ` : turns string categorical values into an encoded
5858 representation that can be read by an ` Embedding ` layer or ` Dense ` layer.
5959- ` layer_integer_lookup() ` : turns integer categorical values into an
6060 encoded representation that can be read by an ` Embedding ` layer or ` Dense `
@@ -67,7 +67,7 @@ These layers are for standardizing the inputs of an image model.
6767
6868- ` layer_resizing() ` : resizes a batch of images to a target size.
6969- ` layer_rescaling() ` : rescales and offsets the values of a batch of
70- image (e.g. go from inputs in the ` [0, 255] ` range to inputs in the ` [0, 1] `
70+ images (e.g., going from inputs in the ` [0, 255] ` range to inputs in the ` [0, 1] `
7171 range.
7272- ` layer_center_crop() ` : returns a center crop of a batch of images.
7373
0 commit comments