Instructions to use Syahhh01/Stunting_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- TF-Keras
How to use Syahhh01/Stunting_model with TF-Keras:
# Note: 'keras<3.x' or 'tf_keras' must be installed (legacy) # See https://github.com/keras-team/tf-keras for more details. from huggingface_hub import from_pretrained_keras model = from_pretrained_keras("Syahhh01/Stunting_model") - Notebooks
- Google Colab
- Kaggle
Create prepocessor_config.json
Browse files
Model_DenseNet/preprocessor_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_resize": true,
|
| 3 |
+
"size": 224,
|
| 4 |
+
"do_normalize": true,
|
| 5 |
+
"image_mean": [0.485, 0.456, 0.406],
|
| 6 |
+
"image_std": [0.229, 0.224, 0.225]
|
| 7 |
+
}
|