Skip to content

Commit 3f0ed42

Browse files
committed
regenerate pkgdown site
1 parent 4a6cba4 commit 3f0ed42

244 files changed

Lines changed: 2523 additions & 930 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/dev/articles/examples/timeseries/timeseries_anomaly_detection.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dev/articles/examples/timeseries/timeseries_classification_from_scratch.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dev/articles/examples/vision/oxford_pets_image_segmentation.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dev/llms.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ documentation.
465465
: Randomly performs the color degeneration operation on given images.
466466

467467
- [`layer_random_color_jitter()`](https://keras3.posit.co/dev/reference/layer_random_color_jitter.md)
468-
: Randomly apply brightness, contrast, saturation
468+
: Randomly apply brightness, contrast, saturation, and hue.
469469

470470
- [`layer_random_contrast()`](https://keras3.posit.co/dev/reference/layer_random_contrast.md)
471471
: A preprocessing layer which randomly adjusts contrast during
@@ -513,7 +513,8 @@ documentation.
513513
: Randomly performs the sharpness operation on given images.
514514

515515
- [`layer_random_shear()`](https://keras3.posit.co/dev/reference/layer_random_shear.md)
516-
: A preprocessing layer that randomly applies shear transformations
516+
: A preprocessing layer that randomly applies shear transformations to
517+
images.
517518

518519
- [`layer_random_translation()`](https://keras3.posit.co/dev/reference/layer_random_translation.md)
519520
: A preprocessing layer which randomly translates images during
@@ -921,7 +922,8 @@ Functions that are safe to call with both symbolic and eager tensor.
921922
Return the ceiling of the input, element-wise.
922923

923924
- [`op_cholesky_inverse()`](https://keras3.posit.co/dev/reference/op_cholesky_inverse.md)
924-
: Compute a matrix inverse from its Cholesky factor.
925+
: Compute the inverse of a symmetric positive-definite matrix from its
926+
Cholesky factor.
925927

926928
- [`op_clip()`](https://keras3.posit.co/dev/reference/op_clip.md) : Clip
927929
(limit) the values in a tensor.
@@ -1783,7 +1785,7 @@ Functions that are safe to call with both symbolic and eager tensor.
17831785
Crop `images` to a specified `height` and `width`.
17841786

17851787
- [`op_image_extract_patches()`](https://keras3.posit.co/dev/reference/op_image_extract_patches.md)
1786-
: Extracts patches from the image(s).
1788+
: Extracts patches from image(s) or volume(s).
17871789

17881790
- [`op_image_extract_patches_3d()`](https://keras3.posit.co/dev/reference/op_image_extract_patches_3d.md)
17891791
: Extract patches from 3D volumes.
@@ -2244,7 +2246,7 @@ transform your input dataset before training.
22442246
: Applies elastic deformation to the image(s).
22452247

22462248
- [`op_image_extract_patches()`](https://keras3.posit.co/dev/reference/op_image_extract_patches.md)
2247-
: Extracts patches from the image(s).
2249+
: Extracts patches from image(s) or volume(s).
22482250

22492251
- [`op_image_extract_patches_3d()`](https://keras3.posit.co/dev/reference/op_image_extract_patches_3d.md)
22502252
: Extract patches from 3D volumes.

docs/dev/pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ articles:
2828
understanding_masking_and_padding: understanding_masking_and_padding.html
2929
writing_a_custom_training_loop_in_tensorflow: writing_a_custom_training_loop_in_tensorflow.html
3030
writing_your_own_callbacks: writing_your_own_callbacks.html
31-
last_built: 2026-07-31T18:34Z
31+
last_built: 2026-08-04T02:57Z
3232
urls:
3333
reference: https://keras3.posit.co/reference
3434
article: https://keras3.posit.co/articles

docs/dev/reference/adapt.html

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dev/reference/adapt.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ adapt(object, data, ..., batch_size = NULL, steps = NULL)
1616

1717
- data:
1818

19-
The data to train on. It can be passed either as a `tf.data.Dataset`
20-
or as an R array.
19+
The data to train on. It can be an R array, a backend-native eager
20+
tensor, a batched `tf.data.Dataset`, a Grain dataset, a
21+
`keras.utils.PyDataset`, or an iterable of batches such as a list of
22+
arrays or a generator. Dataset and iterable inputs must be batched.
2123

2224
- ...:
2325

docs/dev/reference/application_mobilenet_v3_large.html

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dev/reference/application_mobilenet_v3_large.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ application_mobilenet_v3_large(
3737

3838
controls the width of the network. This is known as the depth
3939
multiplier in the MobileNetV3 paper, but the name is kept for
40-
consistency with MobileNetV1 in Keras.
40+
consistency with MobileNetV1 in Keras. When `weights = "imagenet"`,
41+
`alpha` can be `0.75` or `1` for non-minimalistic models, and must be
42+
`1` for minimalistic models.
4143

4244
- If `alpha < 1.0`, proportionally decreases the number of filters in
4345
each layer.

docs/dev/reference/application_mobilenet_v3_small.html

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)