From 279565e19f7cff3fa07b2972c124ec62858d32cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s?= <61120139+ankandrew@users.noreply.github.com> Date: Sun, 8 Dec 2024 21:55:41 -0300 Subject: [PATCH] Fix minor readme typos (#57) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c1bb8be..8c42a2f 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ print(kimm.list_models("mobileone", weights="imagenet")) # Initialize model with pretrained ImageNet weights # Note: all `kimm` models expect inputs in the value range of [0, 255] by -# default if `incldue_preprocessing=True` +# default if `include_preprocessing=True` x = keras.random.uniform([1, 224, 224, 3]) * 255.0 model = kimm.models.MobileOneS0() y = model.predict(x) @@ -92,7 +92,7 @@ for feature_name, feature in features.items(): ``` > [!NOTE] -> All models in `kimm` expect inputs in the value range of [0, 255] by default if `incldue_preprocessing=True`. +> All models in `kimm` expect inputs in the value range of [0, 255] by default if `include_preprocessing=True`. > Some models only accept static inputs. You should explicitly specify the input shape for these models by `input_shape=[*, *, 3]`. ## Advanced Usage