Skip to content

Commit 279565e

Browse files
authored
Fix minor readme typos (#57)
1 parent d3a3196 commit 279565e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ print(kimm.list_models("mobileone", weights="imagenet"))
6161

6262
# Initialize model with pretrained ImageNet weights
6363
# Note: all `kimm` models expect inputs in the value range of [0, 255] by
64-
# default if `incldue_preprocessing=True`
64+
# default if `include_preprocessing=True`
6565
x = keras.random.uniform([1, 224, 224, 3]) * 255.0
6666
model = kimm.models.MobileOneS0()
6767
y = model.predict(x)
@@ -92,7 +92,7 @@ for feature_name, feature in features.items():
9292
```
9393

9494
> [!NOTE]
95-
> All models in `kimm` expect inputs in the value range of [0, 255] by default if `incldue_preprocessing=True`.
95+
> All models in `kimm` expect inputs in the value range of [0, 255] by default if `include_preprocessing=True`.
9696
> Some models only accept static inputs. You should explicitly specify the input shape for these models by `input_shape=[*, *, 3]`.
9797
9898
## Advanced Usage

0 commit comments

Comments
 (0)