Downloads · 30 days
162
32% of all-time downloads
litert-community/efficientnet_v2_l
efficientnet_v2_l is a image classification model from litert-community. Use it when you need a label for an image. It is set up for litert.
The EfficientNetV2-L is a high-capacity model pre-trained on ImageNet-1k, originally introduced by Tan, Mingxing, Le and Quoc in the 2021 paper, EfficientNetV2: Smaller Models and Faster Training. This architecture ev…
Downloads · 30 days
162
32% of all-time downloads
All-time downloads
503
Public
Repo size
599 MB
Likes
0
Public
Click a slice to open those files.
.tflite599 MB · 100%
From the Hugging Face model README
The EfficientNetV2-L is a high-capacity model pre-trained on ImageNet-1k, originally introduced by Tan, Mingxing, Le and Quoc in the 2021 paper, EfficientNetV2: Smaller Models and Faster Training. This architecture evolves the original compound scaling formula by incorporating Fused-MBConv layers and progressive learning—a method that dynamically adjusts image resolution and regularization during training.
The model was converted from a checkpoint from PyTorch Vision.
The original model has:
acc@1 (on ImageNet-1K): 85.81%
acc@5 (on ImageNet-1K): 97.79%
num_params: 11,8515,272
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.
1. Install Dependencies Ensure your Python environment is set up with the required libraries. Run the following command in your terminal:
pip install numpy Pillow huggingface_hub ai-edge-litert
2. Prepare Your Image 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.
3. Save the Script Create a new file named classify.py, paste the script below into it, and save the file:
#!/usr/bin/env python3
import argparse, json
import numpy as np
from PIL import Image
from huggingface_hub import hf_hub_download
from ai_edge_litert.compiled_model import CompiledModel
def preprocess(img: Image.Image) -> np.ndarray:
img = img.convert("RGB")
w, h = img.size
s = 480
if w < h:
img = img.resize((s, int(round(h * s / w))), Image.BICUBIC)
else:
img = img.resize((int(round(w * s / h)), s), Image.BICUBIC)
left = (img.size[0] - 480) // 2
top = (img.size[1] - 480) // 2
img = img.crop((left, top, left + 480, top + 480))
x = np.asarray(img, dtype=np.float32) / 255.0
x = (x - np.array([0.5, 0.5, 0.5], dtype=np.float32)) / np.array(
[0.5, 0.5, 0.5], dtype=np.float32
)
return np.transpose(x, (2, 0, 1))
def main():
ap = argparse.ArgumentParser()
ap.add_argument("--image", required=True)
args = ap.parse_args()
model_path = hf_hub_download("litert-community/efficientnet_v2_l", "efficientnet_v2_l.tflite")
labels_path = hf_hub_download(
"huggingface/label-files", "imagenet-1k-id2label.json", repo_type="dataset"
)
with open(labels_path, "r", encoding="utf-8") as f:
id2label = {int(k): v for k, v in json.load(f).items()}
img = Image.open(args.image)
x = preprocess(img)
model = CompiledModel.from_file(model_path)
inp = model.create_input_buffers(0)
out = model.create_output_buffers(0)
inp[0].write(x)
model.run_by_index(0, inp, out)
req = model.get_output_buffer_requirements(0, 0)
y = out[0].read(req["buffer_size"] // np.dtype(np.float32).itemsize, np.float32)
pred = int(np.argmax(y))
label = id2label.get(pred, f"class_{pred}")
print(f"Top-1 class index: {pred}")
print(f"Top-1 label: {label}")
if __name__ == "__main__":
main()
4. Execute the Python Script Run the below command:
python classify.py --image cat.jpg
@inproceedings{tan2021efficientnetv2,
title={Efficientnetv2: Smaller models and faster training},
author={Tan, Mingxing and Le, Quoc},
booktitle={International conference on machine learning},
pages={10096--10106},
year={2021},
organization={PMLR}
}