You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+54-88Lines changed: 54 additions & 88 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@
14
14
# Keras Image Models
15
15
16
16
-[Introduction](#introduction)
17
+
-[Usage](#usage)
17
18
-[Installation](#installation)
18
19
-[Quickstart](#quickstart)
19
20
-[Image classification with ImageNet weights](#image-classification-using-the-model-pretrained-on-imagenet)
@@ -29,74 +30,67 @@
29
30
30
31
**KIMM** is:
31
32
32
-
🚀 A model zoo where almost all models come with **pre-trained weights on ImageNet**.
33
+
- 🚀 A model zoo where almost all models come with **pre-trained weights on ImageNet**.
34
+
- 🧰 Providing APIs to export models to `.tflite` and `.onnx`.
35
+
- 🔧 Supporting the **reparameterization** technique.
36
+
- ✨ Integrated with **feature extraction** capability.
33
37
34
-
> [!NOTE]
35
-
> The accuracy of the converted models can be found at [results-imagenet.csv (timm)](https://github.com/huggingface/pytorch-image-models/blob/main/results/results-imagenet.csv) and [https://keras.io/api/applications/ (keras)](https://keras.io/api/applications/),
36
-
> and the numerical differences of the converted models can be verified in `tools/convert_*.py`.
[](https://colab.research.google.com/drive/14WxYgVjlwCIO9MwqPYW-dskbTL2UHsVN?usp=sharing)
113
107
114
-
```python
115
-
import keras
116
-
from keras import ops
117
-
from keras import utils
118
-
from keras.applications.imagenet_utils import decode_predictions
119
-
120
-
import kimm
108
+
Using `kimm.models.VisionTransformerTiny16`:
121
109
122
-
# Use `kimm.list_models` to get the list of available models
123
-
print(kimm.list_models())
124
-
125
-
# Specify the name and other arguments to filter the result
0 commit comments