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
+21-7Lines changed: 21 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,23 @@
13
13
14
14
# Keras Image Models
15
15
16
+
-[Introduction](#introduction)
17
+
-[Installation](#installation)
18
+
-[Quickstart](#quickstart)
19
+
-[Image classification using the model pretrained on ImageNet](#image-classification-using-the-model-pretrained-on-imagenet)
20
+
-[An end-to-end example: fine-tuning an image classification model on a cats vs. dogs dataset](#an-end-to-end-example-fine-tuning-an-image-classification-model-on-a-cats-vs-dogs-dataset)
21
+
-[Grad-CAM](#grad-cam)
22
+
-[Model Zoo](#model-zoo)
23
+
-[License](#license)
24
+
-[Acknowledgements](#acknowledgements)
25
+
16
26
## Introduction
17
27
18
28
**K**eras **Im**age **M**odels (`kimm`) is a collection of image models, blocks and layers written in Keras 3. The goal is to offer SOTA models with pretrained weights in a user-friendly manner.
19
29
20
30
KIMM is:
21
31
22
-
🚀 A model zoo where almost all models come with pre-trained weights on ImageNet.
32
+
🚀 A model zoo where almost all models come with **pre-trained weights on ImageNet**.
23
33
24
34
> [!NOTE]
25
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/),
@@ -42,7 +52,7 @@ model = kimm.models.RegNetY002(
42
52
)
43
53
```
44
54
45
-
🔥 Integrated with feature extraction capability.
55
+
🔥 Integrated with **feature extraction** capability.
46
56
47
57
```python
48
58
model = kimm.models.ConvNeXtAtto(feature_extractor=True)
### Image Classification Using the Model Pretrained on ImageNet
110
+
### Image classification using the model pretrained on ImageNet
97
111
98
112
[](https://colab.research.google.com/drive/14WxYgVjlwCIO9MwqPYW-dskbTL2UHsVN?usp=sharing)
0 commit comments