Skip to content

Commit

Permalink
Fix minor readme typos (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankandrew authored Dec 9, 2024
1 parent d3a3196 commit 279565e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 279565e

Please sign in to comment.