Files changed (1) hide show
  1. README.md +109 -1
README.md CHANGED
@@ -1,21 +1,129 @@
1
  ---
2
  library_name: litert
 
3
  tags:
4
  - vision
5
  - image-classification
 
 
6
  datasets:
7
  - imagenet-1k
8
  base_model:
9
  - google/efficientnet-b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
 
11
  # EfficientNet B3
12
 
13
- EfficientNet B3 model pre-trained on ImageNet-1k.
 
 
 
 
 
 
 
 
 
14
 
15
  ## Intended uses & limitations
16
 
17
  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.
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  ### BibTeX entry and citation info
20
 
21
  ```bibtex
 
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
  base_model:
12
  - google/efficientnet-b3
13
+ model-index:
14
+ - name: EfficientNet_B3
15
+ results:
16
+ - task:
17
+ type: image-classification
18
+ name: Image Classification
19
+ dataset:
20
+ name: ImageNet-1k
21
+ type: imagenet-1k
22
+ config: default
23
+ split: validation
24
+ metrics:
25
+ - name: Top 1 Accuracy (Full Precision)
26
+ type: accuracy
27
+ value: 0.8201
28
+ - name: Top 5 Accuracy (Full Precision)
29
+ type: accuracy
30
+ value: 0.9604
31
+ - name: Top 1 Accuracy (Dynamic Quantized wi8 afp32)
32
+ type: accuracy
33
+ value: 0.8162
34
+ - name: Top 5 Accuracy (Dynamic Quantized wi8 afp32)
35
+ type: accuracy
36
+ value: 0.9591
37
  ---
38
+
39
  # EfficientNet B3
40
 
41
+ EfficientNet B3 model pre-trained on ImageNet-1k. Originally introduced by Tan and Le in the influential paper,[ **EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks**](https://arxiv.org/abs/1905.11946) this model utilizes compound scaling to systematically balance network depth, width, and resolution, enabling superior accuracy with significantly higher efficiency than traditional architectures.
42
+
43
+ ## Model description
44
+
45
+ The model was converted from a checkpoint from PyTorch Vision.
46
+
47
+ The original model has:
48
+ acc@1 (on ImageNet-1K): 82.008%
49
+ acc@5 (on ImageNet-1K): 96.054%
50
+ num_params: 12,233,232
51
 
52
  ## Intended uses & limitations
53
 
54
  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.
55
 
56
+ ## Use
57
+
58
+ ```python
59
+ #!/usr/bin/env python3
60
+ import argparse, json
61
+ import numpy as np
62
+ from PIL import Image
63
+ from huggingface_hub import hf_hub_download
64
+ from ai_edge_litert.compiled_model import CompiledModel
65
+
66
+
67
+ def preprocess(img: Image.Image) -> np.ndarray:
68
+ img = img.convert("RGB")
69
+ w, h = img.size
70
+ s = 320
71
+ if w < h:
72
+ img = img.resize((s, int(round(h * s / w))), Image.BICUBIC)
73
+ else:
74
+ img = img.resize((int(round(w * s / h)), s), Image.BICUBIC)
75
+ left = (img.size[0] - 300) // 2
76
+ top = (img.size[1] - 300) // 2
77
+ img = img.crop((left, top, left + 300, top + 300))
78
+
79
+
80
+ x = np.asarray(img, dtype=np.float32) / 255.0
81
+ x = (x - np.array([0.485, 0.456, 0.406], dtype=np.float32)) / np.array(
82
+ [0.229, 0.224, 0.225], dtype=np.float32
83
+ )
84
+ return np.transpose(x, (2, 0, 1))
85
+
86
+
87
+ def main():
88
+ ap = argparse.ArgumentParser()
89
+ ap.add_argument("--image", required=True)
90
+ args = ap.parse_args()
91
+
92
+
93
+ model_path = hf_hub_download("litert-community/efficientnet_b3", "efficientnet_b3.tflite")
94
+ labels_path = hf_hub_download(
95
+ "huggingface/label-files", "imagenet-1k-id2label.json", repo_type="dataset"
96
+ )
97
+ with open(labels_path, "r", encoding="utf-8") as f:
98
+ id2label = {int(k): v for k, v in json.load(f).items()}
99
+
100
+
101
+ img = Image.open(args.image)
102
+ x = preprocess(img)
103
+
104
+
105
+ model = CompiledModel.from_file(model_path)
106
+ inp = model.create_input_buffers(0)
107
+ out = model.create_output_buffers(0)
108
+
109
+
110
+ inp[0].write(x)
111
+ model.run_by_index(0, inp, out)
112
+
113
+
114
+ req = model.get_output_buffer_requirements(0, 0)
115
+ y = out[0].read(req["buffer_size"] // np.dtype(np.float32).itemsize, np.float32)
116
+
117
+
118
+ pred = int(np.argmax(y))
119
+ label = id2label.get(pred, f"class_{pred}")
120
+
121
+
122
+ print(f"Top-1 class index: {pred}")
123
+ print(f"Top-1 label: {label}")
124
+ if __name__ == "__main__":
125
+ main()
126
+ ```
127
  ### BibTeX entry and citation info
128
 
129
  ```bibtex