inference4j/efficientnet-lite4
1
EfficientNet-Lite4 — ONNX
ONNX export of EfficientNet-Lite4, a lightweight and efficient image classification model optimized for mobile/edge deployment. Trained on ImageNet with 1000-class output.
Mirrored for use with inference4j, an inference-only AI library for Java.
Original Source
- Repository: ONNX
- License: apache-2.0
Usage with inference4j
try (EfficientNet model = EfficientNet.fromPretrained("models/efficientnet-lite4")) {
List<Classification> results = model.classify(Path.of("cat.jpg"));
results.forEach(c -> System.out.printf("%s: %.2f%%%n", c.label(), c.score() * 100));
}Model Details
License
This model is licensed under the Apache License 2.0. Original model from ONNX.
