Update README: Add model card metadata, ImageNet-1k metrics, and LiteRT usage example

#1
Files changed (1) hide show
  1. README.md +138 -0
README.md CHANGED
@@ -1,8 +1,146 @@
1
  ---
2
  library_name: litert
 
3
  tags:
4
  - vision
5
  - image-classification
 
 
6
  datasets:
7
  - imagenet-1k
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  library_name: litert
3
+ pipeline_tag: image-classification
4
  tags:
5
  - vision
6
  - image-classification
7
+ - google
8
+ - computer-vision
9
  datasets:
10
  - imagenet-1k
11
+ model-index:
12
+ - name: litert-community/vgg19
13
+ results:
14
+ - task:
15
+ type: image-classification
16
+ name: Image Classification
17
+ dataset:
18
+ name: ImageNet-1k
19
+ type: imagenet-1k
20
+ config: default
21
+ split: validation
22
+ metrics:
23
+ - name: Top 1 Accuracy (Full Precision)
24
+ type: accuracy
25
+ value: 0.7238
26
+ - name: Top 5 Accuracy (Full Precision)
27
+ type: accuracy
28
+ value: 0.9089
29
  ---
30
+
31
+ # VGG19
32
+
33
+ VGG19 model pre-trained on ImageNet-1k. Originally introduced by Karen Simonyan and Andrew Zisserman in the influential paper, [**Very Deep Convolutional Networks for Large-Scale Image Recognition**](https://arxiv.org/abs/1409.1556) this 19-layer architecture represents the deepest configuration of the VGG series, utilizing an extensive stack of \\(3 \times 3 \\) convolutional layers to extract increasingly complex features and achieve high accuracy on large-scale visual recognition tasks.
34
+
35
+ ## Model description
36
+
37
+ The model was converted from a checkpoint from PyTorch Vision.
38
+
39
+ The original model has:
40
+ acc@1 (on ImageNet-1K): 72.376%
41
+ acc@5 (on ImageNet-1K): 90.876%
42
+ num_params: 143667240
43
+
44
+
45
+ ## Intended uses & limitations
46
+
47
+ The model files were converted from pretrained weights from PyTorch Vision. The models may have their own licenses or terms and conditions derived from PyTorch Vision and the dataset used for training. It is your responsibility to determine whether you have permission to use the models for your use case.
48
+
49
+
50
+ ## How to Use
51
+
52
+ ​​**1. Install Dependencies**
53
+
54
+ Ensure your Python environment is set up with the required libraries. Run the following command in your terminal
55
+
56
+ ```bash
57
+ pip install numpy Pillow huggingface_hub ai-edge-litert
58
+ ```
59
+
60
+ **2. Prepare Your Image**
61
+
62
+ The script expects an image file to analyze. Make sure you have an image (e.g., cat.jpg or car.png) saved in the same working directory as your script.
63
+
64
+
65
+ **3. Save the Script**
66
+
67
+ Create a new file named `classify.py`, paste the script below into it, and save the file
68
+
69
+ ```python
70
+ #!/usr/bin/env python3
71
+ import argparse, json
72
+ import numpy as np
73
+ from PIL import Image
74
+ from huggingface_hub import hf_hub_download
75
+ from ai_edge_litert.compiled_model import CompiledModel
76
+
77
+ def preprocess(img: Image.Image) -> np.ndarray:
78
+ img = img.convert("RGB")
79
+ w, h = img.size
80
+ s = 256
81
+ if w < h:
82
+ img = img.resize((s, int(round(h * s / w))), Image.BILINEAR)
83
+ else:
84
+ img = img.resize((int(round(w * s / h)), s), Image.BILINEAR)
85
+ left = (img.size[0] - 224) // 2
86
+ top = (img.size[1] - 224) // 2
87
+ img = img.crop((left, top, left + 224, top + 224))
88
+
89
+ x = np.asarray(img, dtype=np.float32) / 255.0
90
+ x = (x - np.array([0.485, 0.456, 0.406], dtype=np.float32)) / np.array(
91
+ [0.229, 0.224, 0.225], dtype=np.float32
92
+ )
93
+ return np.expand_dims(x, axis=0)
94
+
95
+ def main():
96
+ ap = argparse.ArgumentParser()
97
+ ap.add_argument("--image", required=True)
98
+ args = ap.parse_args()
99
+
100
+ model_path = hf_hub_download("litert-community/vgg19", "vgg19.tflite")
101
+ labels_path = hf_hub_download(
102
+ "huggingface/label-files", "imagenet-1k-id2label.json", repo_type="dataset"
103
+ )
104
+ with open(labels_path, "r", encoding="utf-8") as f:
105
+ id2label = {int(k): v for k, v in json.load(f).items()}
106
+
107
+ img = Image.open(args.image)
108
+ x = preprocess(img)
109
+
110
+ model = CompiledModel.from_file(model_path)
111
+ inp = model.create_input_buffers(0)
112
+ out = model.create_output_buffers(0)
113
+
114
+ inp[0].write(x)
115
+ model.run_by_index(0, inp, out)
116
+
117
+ req = model.get_output_buffer_requirements(0, 0)
118
+ y = out[0].read(req["buffer_size"] // np.dtype(np.float32).itemsize, np.float32)
119
+
120
+ pred = int(np.argmax(y))
121
+ label = id2label.get(pred, f"class_{pred}")
122
+
123
+ print(f"Top-1 class index: {pred}")
124
+ print(f"Top-1 label: {label}")
125
+ if __name__ == "__main__":
126
+ main()
127
+ ```
128
+ **4. Execute the Python Script** Run the below command:
129
+
130
+ ```bash
131
+ python classify.py --image cat.jpg
132
+ ```
133
+
134
+ ### BibTeX entry and citation info
135
+
136
+ ```bibtex
137
+ @misc{simonyan2015deepconvolutionalnetworkslargescale,
138
+ title={Very Deep Convolutional Networks for Large-Scale Image Recognition},
139
+ author={Karen Simonyan and Andrew Zisserman},
140
+ year={2015},
141
+ eprint={1409.1556},
142
+ archivePrefix={arXiv},
143
+ primaryClass={cs.CV},
144
+ url={https://arxiv.org/abs/1409.1556},
145
+ }
146
+ ```