File size: 2,587 Bytes
1a8091e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# ConvNeXt-Tiny
Run **ConvNeXt-Tiny** on Qualcomm NPU with [nexaSDK](https://sdk.nexa.ai).
## Quickstart
1. **Install nexaSDK** and create a free account at [sdk.nexa.ai](https://sdk.nexa.ai)
2. **Activate your device** with your access token:
```bash
nexa config set license '<access_token>'
```
3. Run the model locally in one line:
```bash
nexa infer NexaAI/convnext-tiny-npu
```
## Model Description
**ConvNeXt-Tiny** is a lightweight convolutional neural network (CNN) developed by Meta AI, designed to modernize traditional ConvNet architectures with design principles inspired by Vision Transformers (ViTs).
With around **28 million parameters**, it achieves competitive ImageNet performance while remaining efficient for on-device and edge inference.
ConvNeXt-Tiny brings transformer-like accuracy to a purely convolutional design — combining modern architectural updates with the efficiency of classical CNNs.
## Features
- **High-accuracy Image Classification**: Pretrained on ImageNet-1K with strong top-1 accuracy.
- **Flexible Backbone**: Commonly used as a feature extractor for detection, segmentation, and multimodal systems.
- **Optimized for Efficiency**: Compact model size enables fast inference and low latency on CPUs, GPUs, and NPUs.
- **Modernized CNN Design**: Adopts ViT-inspired improvements such as layer normalization, larger kernels, and inverted bottlenecks.
- **Scalable Family**: Part of the ConvNeXt suite (Tiny, Small, Base, Large, XLarge) for different compute and accuracy trade-offs.
## Use Cases
- Real-time image recognition on edge or mobile devices
- Vision backbone for multimodal and perception models
- Visual search, tagging, and recommendation systems
- Transfer learning and fine-tuning for domain-specific tasks
- Efficient deployment in production or research environments
## Inputs and Outputs
**Input:**
- RGB image tensor (usually `3 × 224 × 224`)
- Normalized using ImageNet mean and standard deviation
**Output:**
- 1000-dimensional logits for ImageNet class probabilities
- Optional intermediate feature maps when used as a backbone
## License
- All NPU-related components of this project — including code, models, runtimes, and configuration files under the src/npu/ and models/npu/ directories — are licensed under the Creative Commons Attribution–NonCommercial 4.0 International (CC BY-NC 4.0) license.
- Commercial licensing or usage rights must be obtained through a separate agreement. For inquiries regarding commercial use, please contact `[email protected]` |