Instructions to use zeromodels/maxvit_base_tf_384_in1k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use zeromodels/maxvit_base_tf_384_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/maxvit_base_tf_384_in1k") - Notebooks
- Google Colab
- Kaggle
fix readme.md
Browse files
README.md
CHANGED
|
@@ -8,20 +8,89 @@ tags:
|
|
| 8 |
- kerasformers
|
| 9 |
- image-classification
|
| 10 |
- maxvit
|
| 11 |
-
-
|
| 12 |
-
-
|
| 13 |
- pytorch
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
-
Pure-Keras 3
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
| 21 |
|
| 22 |
```python
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
```
|
| 26 |
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
- kerasformers
|
| 9 |
- image-classification
|
| 10 |
- maxvit
|
| 11 |
+
- backbone
|
| 12 |
+
- arxiv:2204.01697
|
| 13 |
- pytorch
|
| 14 |
+
- jax
|
| 15 |
+
- tf
|
| 16 |
---
|
| 17 |
|
| 18 |
+
## ***See [our collection](https://huggingface.co/collections/kerasformers/maxvit-6a6bd734b6d773748325c03c) for all versions of MaxViT.***
|
| 19 |
+
|
| 20 |
+
# Run MaxViT with Keras 3: JAX, PyTorch, or TensorFlow
|
| 21 |
+
|
| 22 |
+
[](https://github.com/IMvision12/KerasFormers) [](https://imvision12.github.io/KerasFormers/classification_backbones/) [](https://huggingface.co/collections/kerasformers/maxvit-6a6bd734b6d773748325c03c)
|
| 23 |
+
|
| 24 |
+
# kerasformers/maxvit_base_tf_384_in1k
|
| 25 |
+
|
| 26 |
+
Paper: [MaxViT: Multi-Axis Vision Transformer (arXiv:2204.01697)](https://arxiv.org/abs/2204.01697) · [HF Papers](https://huggingface.co/papers/2204.01697)
|
| 27 |
+
|
| 28 |
+
MaxViT combines blocked local and dilated global attention (multi-axis) in a hierarchical CNN/Transformer hybrid.
|
| 29 |
+
|
| 30 |
+
For more details on the model, please go to the upstream [model card](https://huggingface.co/timm/maxvit_base_tf_384.in1k).
|
| 31 |
|
| 32 |
+
Pure-**Keras 3** conversion of [`timm/maxvit_base_tf_384.in1k`](https://huggingface.co/timm/maxvit_base_tf_384.in1k) for [kerasformers](https://github.com/IMvision12/KerasFormers). One implementation runs unmodified on **TensorFlow / Torch / JAX**.
|
| 33 |
|
| 34 |
+
This is an **image-classification / backbone** checkpoint (`MaxViTImageClassify` / `MaxViTModel`).
|
| 35 |
+
|
| 36 |
+
## ✨ Quick start
|
| 37 |
|
| 38 |
```python
|
| 39 |
+
import os
|
| 40 |
+
os.environ["KERAS_BACKEND"] = "torch" # or "jax" / "tensorflow"
|
| 41 |
+
|
| 42 |
+
from PIL import Image
|
| 43 |
+
import numpy as np
|
| 44 |
+
from kerasformers.models.maxvit import MaxViTImageClassify, MaxViTModel
|
| 45 |
+
|
| 46 |
+
model = MaxViTImageClassify.from_weights("kerasformers/maxvit_base_tf_384_in1k")
|
| 47 |
+
backbone = MaxViTModel.from_weights(
|
| 48 |
+
"kerasformers/maxvit_base_tf_384_in1k", as_backbone=True
|
| 49 |
+
)
|
| 50 |
+
|
| 51 |
+
image = Image.open("your_image.jpg").convert("RGB")
|
| 52 |
+
image = image.resize((224, 224))
|
| 53 |
+
x = np.asarray(image, dtype="float32")[None] # (1, H, W, 3)
|
| 54 |
+
print(model(x).shape) # (1, num_classes)
|
| 55 |
+
feats = backbone(x)
|
| 56 |
+
print(len(feats), [tuple(f.shape) for f in feats])
|
| 57 |
```
|
| 58 |
|
| 59 |
+
Load any MaxViT variant the same way with `from_weights("kerasformers/<variant>")`:
|
| 60 |
+
|
| 61 |
+
| Variant | Hub |
|
| 62 |
+
|---|---|
|
| 63 |
+
| `maxvit_base_tf_224_in1k` | [`kerasformers/maxvit_base_tf_224_in1k`](https://huggingface.co/kerasformers/maxvit_base_tf_224_in1k) |
|
| 64 |
+
| `maxvit_base_tf_224_in21k` | [`kerasformers/maxvit_base_tf_224_in21k`](https://huggingface.co/kerasformers/maxvit_base_tf_224_in21k) |
|
| 65 |
+
| `maxvit_base_tf_384_in1k` | [`kerasformers/maxvit_base_tf_384_in1k`](https://huggingface.co/kerasformers/maxvit_base_tf_384_in1k) |
|
| 66 |
+
| `maxvit_base_tf_384_in21k_ft_in1k` | [`kerasformers/maxvit_base_tf_384_in21k_ft_in1k`](https://huggingface.co/kerasformers/maxvit_base_tf_384_in21k_ft_in1k) |
|
| 67 |
+
| `maxvit_base_tf_512_in1k` | [`kerasformers/maxvit_base_tf_512_in1k`](https://huggingface.co/kerasformers/maxvit_base_tf_512_in1k) |
|
| 68 |
+
| `maxvit_base_tf_512_in21k_ft_in1k` | [`kerasformers/maxvit_base_tf_512_in21k_ft_in1k`](https://huggingface.co/kerasformers/maxvit_base_tf_512_in21k_ft_in1k) |
|
| 69 |
+
| `maxvit_large_tf_224_in1k` | [`kerasformers/maxvit_large_tf_224_in1k`](https://huggingface.co/kerasformers/maxvit_large_tf_224_in1k) |
|
| 70 |
+
| `maxvit_large_tf_224_in21k` | [`kerasformers/maxvit_large_tf_224_in21k`](https://huggingface.co/kerasformers/maxvit_large_tf_224_in21k) |
|
| 71 |
+
| `maxvit_large_tf_384_in1k` | [`kerasformers/maxvit_large_tf_384_in1k`](https://huggingface.co/kerasformers/maxvit_large_tf_384_in1k) |
|
| 72 |
+
| `maxvit_large_tf_384_in21k_ft_in1k` | [`kerasformers/maxvit_large_tf_384_in21k_ft_in1k`](https://huggingface.co/kerasformers/maxvit_large_tf_384_in21k_ft_in1k) |
|
| 73 |
+
| `maxvit_large_tf_512_in1k` | [`kerasformers/maxvit_large_tf_512_in1k`](https://huggingface.co/kerasformers/maxvit_large_tf_512_in1k) |
|
| 74 |
+
| `maxvit_large_tf_512_in21k_ft_in1k` | [`kerasformers/maxvit_large_tf_512_in21k_ft_in1k`](https://huggingface.co/kerasformers/maxvit_large_tf_512_in21k_ft_in1k) |
|
| 75 |
+
| `maxvit_small_tf_224_in1k` | [`kerasformers/maxvit_small_tf_224_in1k`](https://huggingface.co/kerasformers/maxvit_small_tf_224_in1k) |
|
| 76 |
+
| `maxvit_small_tf_384_in1k` | [`kerasformers/maxvit_small_tf_384_in1k`](https://huggingface.co/kerasformers/maxvit_small_tf_384_in1k) |
|
| 77 |
+
| `maxvit_small_tf_512_in1k` | [`kerasformers/maxvit_small_tf_512_in1k`](https://huggingface.co/kerasformers/maxvit_small_tf_512_in1k) |
|
| 78 |
+
| `maxvit_tiny_tf_224_in1k` | [`kerasformers/maxvit_tiny_tf_224_in1k`](https://huggingface.co/kerasformers/maxvit_tiny_tf_224_in1k) |
|
| 79 |
+
| `maxvit_tiny_tf_384_in1k` | [`kerasformers/maxvit_tiny_tf_384_in1k`](https://huggingface.co/kerasformers/maxvit_tiny_tf_384_in1k) |
|
| 80 |
+
| `maxvit_tiny_tf_512_in1k` | [`kerasformers/maxvit_tiny_tf_512_in1k`](https://huggingface.co/kerasformers/maxvit_tiny_tf_512_in1k) |
|
| 81 |
+
| `maxvit_xlarge_tf_224_in21k` | [`kerasformers/maxvit_xlarge_tf_224_in21k`](https://huggingface.co/kerasformers/maxvit_xlarge_tf_224_in21k) |
|
| 82 |
+
| `maxvit_xlarge_tf_384_in21k_ft_in1k` | [`kerasformers/maxvit_xlarge_tf_384_in21k_ft_in1k`](https://huggingface.co/kerasformers/maxvit_xlarge_tf_384_in21k_ft_in1k) |
|
| 83 |
+
| `maxvit_xlarge_tf_512_in21k_ft_in1k` | [`kerasformers/maxvit_xlarge_tf_512_in21k_ft_in1k`](https://huggingface.co/kerasformers/maxvit_xlarge_tf_512_in21k_ft_in1k) |
|
| 84 |
+
|
| 85 |
+
## Tips
|
| 86 |
+
|
| 87 |
+
- Set `KERAS_BACKEND` **before** importing Keras / kerasformers.
|
| 88 |
+
- `MaxViTImageClassify` returns class logits; `MaxViTModel` returns features (`as_backbone=True` for multi-scale stages).
|
| 89 |
+
- See [docs](https://imvision12.github.io/KerasFormers/classification_backbones/) and [Loading Weights](https://imvision12.github.io/KerasFormers/loading_weights/).
|
| 90 |
+
- Upstream / timm checkpoints: `MaxViTImageClassify.from_weights("hf:timm/maxvit_base_tf_384.in1k")`.
|
| 91 |
+
|
| 92 |
+
## Special Thanks
|
| 93 |
+
|
| 94 |
+
A huge thank you to the MaxViT authors and the timm / Hub communities for creating and releasing these models.
|
| 95 |
+
|
| 96 |
+
License: see YAML `license` (usually matches the upstream checkpoint).
|