Instructions to use zeromodels/convnext_tiny_fb_in22k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasFormers
How to use zeromodels/convnext_tiny_fb_in22k 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/convnext_tiny_fb_in22k 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/convnext_tiny_fb_in22k") - Notebooks
- Google Colab
- Kaggle
Upload kf_config.json with huggingface_hub
Browse files- kf_config.json +23 -0
kf_config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"library_name": "kerasformers",
|
| 3 |
+
"kerasformers_version": "1.1.3",
|
| 4 |
+
"model_module": "kerasformers.models.convnext",
|
| 5 |
+
"model_class": "ConvNeXtImageClassify",
|
| 6 |
+
"variant": "convnext_tiny_fb_in22k",
|
| 7 |
+
"weights": "model.weights.h5",
|
| 8 |
+
"model_type": "convnext",
|
| 9 |
+
"depths": [
|
| 10 |
+
3,
|
| 11 |
+
3,
|
| 12 |
+
9,
|
| 13 |
+
3
|
| 14 |
+
],
|
| 15 |
+
"projection_dim": [
|
| 16 |
+
96,
|
| 17 |
+
192,
|
| 18 |
+
384,
|
| 19 |
+
768
|
| 20 |
+
],
|
| 21 |
+
"image_size": 224,
|
| 22 |
+
"num_classes": 21841
|
| 23 |
+
}
|