Files changed (1) hide show
  1. README.md +144 -3
README.md CHANGED
@@ -1,8 +1,149 @@
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/vgg11
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.6897
26
+ - name: Top 5 Accuracy (Full Precision)
27
+ type: accuracy
28
+ value: 0.8865
29
  ---
30
+
31
+ # VGG11
32
+
33
+ VGG11 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 configuration serves as the base 8-layer convolutional architecture (plus 3 fully connected layers) that proved the effectiveness of using small \\(3 \times 3\\) filters to build deep networks while maintaining a manageable number of parameters.
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): 69.02%
41
+ acc@5 (on ImageNet-1K): 88.628%
42
+ num_params: 132863336
43
+
44
+ The license information of the original model was missing.
45
+
46
+ ## Intended uses & limitations
47
+
48
+ 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.
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/vgg11", "vgg11.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
+
129
+ **4. Execute the Python Script**
130
+
131
+ Run the below command:
132
+
133
+ ```bash
134
+ python classify.py --image cat.jpg
135
+ ```
136
+
137
+ ### BibTeX entry and citation info
138
+
139
+ ```bibtex
140
+ @misc{simonyan2015deepconvolutionalnetworkslargescale,
141
+ title={Very Deep Convolutional Networks for Large-Scale Image Recognition},
142
+ author={Karen Simonyan and Andrew Zisserman},
143
+ year={2015},
144
+ eprint={1409.1556},
145
+ archivePrefix={arXiv},
146
+ primaryClass={cs.CV},
147
+ url={https://arxiv.org/abs/1409.1556},
148
+ }
149
+ ```