Instructions to use zeromodels/tf_efficientnet_lite2_in1k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasFormers
How to use zeromodels/tf_efficientnet_lite2_in1k with KerasFormers:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Keras
How to use zeromodels/tf_efficientnet_lite2_in1k with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://zeromodels/tf_efficientnet_lite2_in1k") - Notebooks
- Google Colab
- Kaggle
Upload kf_config.json with huggingface_hub
Browse files- kf_config.json +15 -0
kf_config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"library_name": "kerasformers",
|
| 3 |
+
"kerasformers_version": "1.1.3",
|
| 4 |
+
"model_module": "kerasformers.models.efficientnet_lite",
|
| 5 |
+
"model_class": "EfficientNetLiteImageClassify",
|
| 6 |
+
"variant": "tf_efficientnet_lite2_in1k",
|
| 7 |
+
"weights": "model.weights.h5",
|
| 8 |
+
"model_type": "efficientnet_lite",
|
| 9 |
+
"width_coefficient": 1.1,
|
| 10 |
+
"depth_coefficient": 1.2,
|
| 11 |
+
"dropout_rate": 0.3,
|
| 12 |
+
"default_size": 260,
|
| 13 |
+
"image_size": 260,
|
| 14 |
+
"num_classes": 1000
|
| 15 |
+
}
|