File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ print(kimm.list_models("mobileone", weights="imagenet"))
61
61
62
62
# Initialize model with pretrained ImageNet weights
63
63
# 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`
65
65
x = keras.random.uniform([1 , 224 , 224 , 3 ]) * 255.0
66
66
model = kimm.models.MobileOneS0()
67
67
y = model.predict(x)
@@ -92,7 +92,7 @@ for feature_name, feature in features.items():
92
92
```
93
93
94
94
> [ !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` .
96
96
> Some models only accept static inputs. You should explicitly specify the input shape for these models by ` input_shape=[*, *, 3] ` .
97
97
98
98
## Advanced Usage
You can’t perform that action at this time.
0 commit comments