Zero-Shot Object Detection
KerasFormers
Keras
PyTorch
JAX
TensorFlow
owlv2
open-vocabulary
object-detection
Instructions to use zeromodels/owlv2-base-patch16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasFormers
How to use zeromodels/owlv2-base-patch16 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/owlv2-base-patch16 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/owlv2-base-patch16") - Notebooks
- Google Colab
- Kaggle
Upgrade kf_config.json to v2 (nested config + dtype)
Browse files- kf_config.json +19 -13
kf_config.json
CHANGED
|
@@ -1,23 +1,29 @@
|
|
| 1 |
{
|
| 2 |
"library_name": "kerasformers",
|
| 3 |
-
"kerasformers_version": "1.
|
| 4 |
"model_module": "kerasformers.models.owlv2",
|
| 5 |
"model_class": "Owlv2Detect",
|
| 6 |
"variant": "owlv2-base-patch16",
|
| 7 |
"weights": "model.weights.h5",
|
|
|
|
|
|
|
| 8 |
"model_type": "owlv2",
|
| 9 |
-
"
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
"projection_dim": 512,
|
| 19 |
-
"text_num_layers": 12,
|
| 20 |
-
"text_max_position_embeddings": 16,
|
| 21 |
-
"text_vocab_size": 49408,
|
| 22 |
"image_size": null
|
| 23 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"library_name": "kerasformers",
|
| 3 |
+
"kerasformers_version": "1.2.1",
|
| 4 |
"model_module": "kerasformers.models.owlv2",
|
| 5 |
"model_class": "Owlv2Detect",
|
| 6 |
"variant": "owlv2-base-patch16",
|
| 7 |
"weights": "model.weights.h5",
|
| 8 |
+
"schema_version": 2,
|
| 9 |
+
"dtype": "float32",
|
| 10 |
"model_type": "owlv2",
|
| 11 |
+
"text_config": {
|
| 12 |
+
"hidden_dim": 512,
|
| 13 |
+
"intermediate_size": 2048,
|
| 14 |
+
"num_heads": 8,
|
| 15 |
+
"num_layers": 12,
|
| 16 |
+
"max_position_embeddings": 16,
|
| 17 |
+
"vocab_size": 49408
|
| 18 |
+
},
|
| 19 |
+
"vision_config": {
|
| 20 |
+
"image_size": 960,
|
| 21 |
+
"patch_size": 16,
|
| 22 |
+
"hidden_dim": 768,
|
| 23 |
+
"intermediate_size": 3072,
|
| 24 |
+
"num_layers": 12,
|
| 25 |
+
"num_heads": 12
|
| 26 |
+
},
|
| 27 |
"projection_dim": 512,
|
|
|
|
|
|
|
|
|
|
| 28 |
"image_size": null
|
| 29 |
}
|