Instructions to use keras/swin_base_patch4_window12_384 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasHub
How to use keras/swin_base_patch4_window12_384 with KerasHub:
import keras_hub import keras # Load ImageClassifier model image_classifier = keras_hub.models.ImageClassifier.from_preset( "hf://keras/swin_base_patch4_window12_384", num_classes=2, ) # Fine-tune image_classifier.fit( x=keras.random.randint((32, 64, 64, 3), 0, 256), y=keras.random.randint((32, 1), 0, 2), ) # Classify image image_classifier.predict(keras.random.randint((1, 64, 64, 3), 0, 256))import keras_hub # Create a Backbone model unspecialized for any task backbone = keras_hub.models.Backbone.from_preset("hf://keras/swin_base_patch4_window12_384") - Keras
How to use keras/swin_base_patch4_window12_384 with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://keras/swin_base_patch4_window12_384") - Notebooks
- Google Colab
- Kaggle
Update README.md with new model card content
Browse files
README.md
CHANGED
|
@@ -1,25 +1,109 @@
|
|
| 1 |
---
|
| 2 |
library_name: keras-hub
|
| 3 |
---
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
*
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
*
|
| 22 |
-
*
|
| 23 |
-
*
|
| 24 |
-
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
library_name: keras-hub
|
| 3 |
---
|
| 4 |
+
### Model Overview
|
| 5 |
+
# Swin Transformer
|
| 6 |
+
|
| 7 |
+
Instantiates the Swin Transformer architecture.
|
| 8 |
+
|
| 9 |
+
## Model Details
|
| 10 |
+
|
| 11 |
+
The Swin Transformer (Shifted Window Transformer) is a hierarchical vision transformer whose representation is computed with shifted windows. The shifted windowing scheme brings greater efficiency by limiting self-attention computation to non-overlapping local windows while also allowing for cross-window connection.
|
| 12 |
+
|
| 13 |
+
This hierarchical architecture has the flexibility to model at various scales and has linear computational complexity with respect to image size. These qualities make Swin Transformer compatible with a broad range of vision tasks, including image classification, object detection, and semantic segmentation.
|
| 14 |
+
|
| 15 |
+
### Reference
|
| 16 |
+
* [Swin Transformer: Hierarchical Vision Transformer using Shifted Windows](https://arxiv.org/abs/2103.14030)
|
| 17 |
+
|
| 18 |
+
Unlike traditional Vision Transformers (ViT), which compute attention globally across all patches (resulting in quadratic complexity relative to image size), Swin Transformer computes self-attention within local non-overlapping windows. By shifting the window partition between consecutive layers, the model achieves cross-window connections, maintaining linear computational complexity while enabling robust global context modeling.
|
| 19 |
+
|
| 20 |
+
### Links
|
| 21 |
+
* [Swin Transformer Quickstart Notebook](https://www.kaggle.com/code/prasadsachin/swin-transformer-quickstart-keras-hub)
|
| 22 |
+
* [Swin Transformer API Documentation](https://keras.io/keras_hub/api/models/swin_transformer/)
|
| 23 |
+
* [KerasHub Beginner Guide](https://keras.io/guides/keras_hub/getting_started/)
|
| 24 |
+
* [KerasHub Model Publishing Guide](https://keras.io/guides/keras_hub/upload/)
|
| 25 |
+
|
| 26 |
+
## Installation
|
| 27 |
+
|
| 28 |
+
Keras and KerasHub can be installed with:
|
| 29 |
+
```bash
|
| 30 |
+
pip install -U -q keras-hub
|
| 31 |
+
pip install -U -q keras
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
JAX, TensorFlow, and PyTorch come preinstalled in Kaggle Notebooks. For instructions on installing them in another environment, see the [Keras Getting Started](https://keras.io/getting_started/) page.
|
| 35 |
+
|
| 36 |
+
## Presets
|
| 37 |
+
|
| 38 |
+
The following model checkpoints are provided by the Keras team. Weights have been ported from [Hugging Face Hub](https://huggingface.co/microsoft).
|
| 39 |
+
|
| 40 |
+
| Preset name | Parameters | Description |
|
| 41 |
+
| :--- | :--- | :--- |
|
| 42 |
+
| **swin_tiny_patch4_window7_224** | 28.29M | Tiny Swin Transformer model pre-trained on ImageNet-1k at a 224x224 resolution |
|
| 43 |
+
| **swin_small_patch4_window7_224** | 49.61M | Small Swin Transformer model pre-trained on ImageNet-1k at a 224x224 resolution |
|
| 44 |
+
| **swin_base_patch4_window7_224** | 87.77M | Base Swin Transformer model pre-trained on ImageNet-1k at a 224x224 resolution |
|
| 45 |
+
| **swin_base_patch4_window12_384** | 87.90M | Base Swin Transformer model pre-trained on ImageNet-1k at a 384x384 resolution |
|
| 46 |
+
| **swin_large_patch4_window7_224** | 196.53M | Large Swin Transformer model pre-trained ImageNet-1k at a 224x224 resolution |
|
| 47 |
+
| **swin_large_patch4_window12_384** | 196.74M | Large Swin Transformer model pre-trained on ImageNet-1k at a 384x384 resolution |
|
| 48 |
+
|
| 49 |
+
## Example Use
|
| 50 |
+
|
| 51 |
+
```python
|
| 52 |
+
import numpy as np
|
| 53 |
+
import keras_hub
|
| 54 |
+
|
| 55 |
+
# Pretrained Swin Transformer backbone
|
| 56 |
+
model = keras_hub.models.SwinTransformerBackbone.from_preset("swin_tiny_patch4_window7_224")
|
| 57 |
+
input_data = np.random.uniform(0, 1, size=(2, 224, 224, 3))
|
| 58 |
+
model(input_data)
|
| 59 |
+
|
| 60 |
+
# Randomly initialized Swin Transformer backbone with custom config
|
| 61 |
+
model = keras_hub.models.SwinTransformerBackbone(
|
| 62 |
+
image_shape=(224, 224, 3),
|
| 63 |
+
embed_dim=96,
|
| 64 |
+
depths=(2, 2, 6, 2),
|
| 65 |
+
num_heads=(3, 6, 12, 24),
|
| 66 |
+
window_size=7,
|
| 67 |
+
)
|
| 68 |
+
model(input_data)
|
| 69 |
+
|
| 70 |
+
# Use Swin Transformer for image classification task
|
| 71 |
+
classifier = keras_hub.models.SwinTransformerImageClassifier.from_preset(
|
| 72 |
+
"swin_tiny_patch4_window7_224",
|
| 73 |
+
num_classes=1000,
|
| 74 |
+
)
|
| 75 |
+
|
| 76 |
+
# Use Hugging Face presets directly for on-the-fly conversion
|
| 77 |
+
classifier = keras_hub.models.SwinTransformerImageClassifier.from_preset(
|
| 78 |
+
"hf://microsoft/swin-tiny-patch4-window7-224"
|
| 79 |
+
)
|
| 80 |
+
```
|
| 81 |
+
|
| 82 |
+
## Example Usage
|
| 83 |
+
```
|
| 84 |
+
import numpy as np
|
| 85 |
+
import keras_hub
|
| 86 |
+
|
| 87 |
+
# Top-5 ImageNet class decoding.
|
| 88 |
+
model = keras_hub.models.SwinTransformerImageClassifier.from_preset(
|
| 89 |
+
"swin_base_patch4_window12_384"
|
| 90 |
+
)
|
| 91 |
+
images = np.random.randint(0, 256, size=(1, 384, 384, 3), dtype="uint8")
|
| 92 |
+
logits = model.predict(images, verbose=0)
|
| 93 |
+
print(keras_hub.utils.decode_imagenet_predictions(logits, top=5)[0])
|
| 94 |
+
```
|
| 95 |
+
|
| 96 |
+
## Example Usage with Hugging Face URI
|
| 97 |
+
|
| 98 |
+
```
|
| 99 |
+
import numpy as np
|
| 100 |
+
import keras_hub
|
| 101 |
+
|
| 102 |
+
# Top-5 ImageNet class decoding.
|
| 103 |
+
model = keras_hub.models.SwinTransformerImageClassifier.from_preset(
|
| 104 |
+
"hf://keras/swin_base_patch4_window12_384"
|
| 105 |
+
)
|
| 106 |
+
images = np.random.randint(0, 256, size=(1, 384, 384, 3), dtype="uint8")
|
| 107 |
+
logits = model.predict(images, verbose=0)
|
| 108 |
+
print(keras_hub.utils.decode_imagenet_predictions(logits, top=5)[0])
|
| 109 |
+
```
|